Exemplo n.º 1
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddBooleanParameter("Bool", "B", "True/false value for all cells", GH_ParamAccess.list);
     pManager.AddPointParameter("Pts", "P", "All points that belong to the grid", GH_ParamAccess.list);
     pManager.AddRectangleParameter("BBox", "BB", "The boundingbox of the grid", GH_ParamAccess.item);
 }
Exemplo n.º 2
0
 protected void AddCommonOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Tags", "T", "The metadata attached to each particular node", GH_ParamAccess.tree);
     pManager.AddTextParameter("Report", "R", ReportDescription, GH_ParamAccess.tree);
     pManager.AddRectangleParameter("Bounds", "B", "The boundary extends of the OSM file(s)", GH_ParamAccess.list);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddRectangleParameter("Rectangle", "r", "Created rectangle", GH_ParamAccess.item);
     pManager.AddNumberParameter("Area", "a", "area of the rectangle", GH_ParamAccess.item);
     pManager.AddPointParameter("Center", "c", "Center of the rectangle", GH_ParamAccess.item);
 }