protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Distribution", "D", "Percent coverage of floor plan area alotted.", GH_ParamAccess.item);
     pManager.AddGeometryParameter("Boundary", "B", "Rectangular bounds of program occupation.", GH_ParamAccess.item);
     pManager.AddGeometryParameter("Drawing Geometry", "G", "Curve information for 2D representation of program.", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Program Quota", "Q", "Initial quota for program.", GH_ParamAccess.item);
 }
Exemplo n.º 2
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Transformed Geometry", "G", "The transformed items arranged in a grid",
                                   GH_ParamAccess.list);
     pManager.AddTransformParameter("Transforms", "X", "The transforms used to locate the items",
                                    GH_ParamAccess.list);
 }
Exemplo n.º 3
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Voxel geometry", "G", "Oriented tiles.", GH_ParamAccess.list);
     pManager.AddPlaneParameter("Voxel orientation", "O", "Orientation of each voxel as a plane.", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Voxel type", "T", "Voxel type as index values.", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Voxel snap type", "S", "Voxel snap types. 0 = face, 1 = edge, 2 = corner.", GH_ParamAccess.list);
     pManager.AddNumberParameter("Voxel distance", "D", "Normalized distance to closest attractor.", GH_ParamAccess.list);
 }
Exemplo n.º 4
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   base.RegisterOutputParams(pManager);
   // Use the pManager object to register your output parameters.
   // Output parameters do not have default values, but they too must have the correct access type.
   pManager.AddGeometryParameter("Sphere", "S", "The resulting wander sphere for debugging purposes.", GH_ParamAccess.item);
   pManager.AddPointParameter("Target Point", "P",
     "The target point that the agent will seek for debugging purposes.", GH_ParamAccess.item);
   // Sometimes you want to hide a specific parameter from the Rhino preview.
   // You can use the HideParameter() method as a quick way:
   //pManager.HideParameter(pManager.ParamCount - 2);
   //pManager.HideParameter(pManager.ParamCount - 1);
 }
Exemplo n.º 5
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     base.RegisterOutputParams(pManager);
     // Use the pManager object to register your output parameters.
     // Output parameters do not have default values, but they too must have the correct access type.
     pManager.AddGeometryParameter("Sphere", "S", "The resulting wander sphere for debugging purposes.", GH_ParamAccess.item);
     pManager.AddPointParameter("Target Point", "P",
                                "The target point that the agent will seek for debugging purposes.", GH_ParamAccess.item);
     // Sometimes you want to hide a specific parameter from the Rhino preview.
     // You can use the HideParameter() method as a quick way:
     //pManager.HideParameter(pManager.ParamCount - 2);
     //pManager.HideParameter(pManager.ParamCount - 1);
 }
Exemplo n.º 6
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Room Regions", "R", "Region geometry for rooms.", GH_ParamAccess.list);
     pManager.AddGeometryParameter("Program placement.", "P", "Placed items.", GH_ParamAccess.list);
     pManager.AddGeometryParameter("Orientation Plane", "Pl", "Room orientation plane. +Y should face towards circulation.", GH_ParamAccess.list);
     pManager.AddGeometryParameter("Anchor", "A", "Centered anchor point.", GH_ParamAccess.item);
     pManager.AddGeometryParameter("Drawing geometry", "D", "Input geometry for program representation.", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Drawing geometry count.", "Dn", "Number of curves used to draw geometry.", GH_ParamAccess.list);
     pManager.AddGeometryParameter("Center", "C", "Center based on item.Dims", GH_ParamAccess.list);
 }
Exemplo n.º 7
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Spring", "Spr", "SOFiSTiK Spring", GH_ParamAccess.list);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Geometry", "G", "Returns geometry", GH_ParamAccess.tree);
 }
Exemplo n.º 9
0
 // Outputs
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Drawing", "D", "Output drawing", GH_ParamAccess.item);
 }
Exemplo n.º 10
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Elastic Coupling", "E-Cpl", "SOFiSTiK Point/Point Point/Line Line/Line Elastic Coupling", GH_ParamAccess.list);
 }
Exemplo n.º 11
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddGeometryParameter("PointCloud", "PCD", "Point Cloud with optional colors", GH_ParamAccess.list);
 }
Exemplo n.º 12
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Geometry", "G", "Output geometry.", GH_ParamAccess.item);
     pManager.AddTextParameter("Geometry ID", "ID", "Used IDs.", GH_ParamAccess.item);
     pManager.AddTextParameter("Confirmation", "c", "Text explanation of operation.", GH_ParamAccess.item);
 }
Exemplo n.º 13
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Support", "S", "Support symbol as geometry", GH_ParamAccess.list);
 }
Exemplo n.º 14
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Cluster Data", "CD", "Returns sets of clusters", GH_ParamAccess.tree);
     pManager.AddGeometryParameter("Cluster Geometry", "CG", "Returns sets of clusters", GH_ParamAccess.tree);
     pManager.AddGeometryParameter("Cluster Centroids", "CC", "Returns the centroids of each cluster", GH_ParamAccess.tree);
 }
Exemplo n.º 15
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "M", "Resulting mesh", GH_ParamAccess.list);
     pManager.AddGeometryParameter("Analysis", "A", "Additional mesh analysis", GH_ParamAccess.list);
     pManager.AddTextParameter("Output", "O", "Output", GH_ParamAccess.list); //debugging
 }
Exemplo n.º 16
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Geometries", "G", "", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Indices", "i", "", GH_ParamAccess.list);
 }
Exemplo n.º 17
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddGeometryParameter("Location", "L", ObjectType.Name + " parameter names", GH_ParamAccess.item);
 }
Exemplo n.º 18
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Line Load", "LLd", "SOFiSTiK Line Load", GH_ParamAccess.list);
 }
Exemplo n.º 19
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddGeometryParameter("Geometry", "G", ObjectType.Name + " parameter names", GH_ParamAccess.list);
 }
Exemplo n.º 20
0
 protected override void CaribouRegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Items", "I", "The geometry that possess the specified tags", GH_ParamAccess.tree);
     pManager.AddTextParameter("Tags", "T", "The metadata attached to each particular item", GH_ParamAccess.tree);
     pManager.AddTextParameter("Report", "R", "The name, count, and description of each feature", GH_ParamAccess.tree);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Recentered Geometry", "G", "The repositioned geometry", GH_ParamAccess.item);
     pManager.AddVectorParameter("Translation Vector", "V", "The translation of the geometry", GH_ParamAccess.item);
 }
Exemplo n.º 22
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Structural Area", "Sar", "SOFiSTiK Structural Area", GH_ParamAccess.list);
 }
Exemplo n.º 23
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddGeometryParameter(PropertyName, PropertyName.Substring(0, 1), ObjectType.Name + " parameter names", GH_ParamAccess.list);
 }
Exemplo n.º 24
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddGeometryParameter("Geometry", "G", "Element geometry", GH_ParamAccess.list);
 }
Exemplo n.º 25
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Geometry", "G", "Distributed geometry.", GH_ParamAccess.list);
     pManager.AddPlaneParameter("Planes", "P", "Output distribution planes.", GH_ParamAccess.list);
 }