示例#1
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("|    Log_ : ", "|   Log", "Result of loading DigitsDataset", GH_ParamAccess.item);
     pManager.AddTextParameter("|    Data |", "|   Data", "List of data to be trained .. ", GH_ParamAccess.item);
     pManager.AddTextParameter("|    Targets |", "|   Targets", "List of targets to be fitted .. ", GH_ParamAccess.item);
 }
示例#2
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Extension Dictionary", "E", "Dictionary<string, int>", GH_ParamAccess.item);
 }
示例#3
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new MeshParam(), "Mesh", "M", "Flipped mesh", GH_ParamAccess.item);
 }
示例#4
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddCurveParameter("剪切结果", "C", "剪切后的曲线A", GH_ParamAccess.list);
 }
示例#5
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Edges", "Edges", "Edges", GH_ParamAccess.list);
 }
 //define grasshopper component ouput parameters
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     // Use the pManager object to register your output parameters.
     pManager.AddGenericParameter("RFEM members", "RfMember", "Generated RFEM members", GH_ParamAccess.list);
     pManager.AddBooleanParameter("Success", "Success", "Returns 'true' if nodes successfully writen, otherwise it is 'false'", GH_ParamAccess.item);
 }
示例#7
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Input names", "Inputs", "A list of all the inputs available for this type of calc", GH_ParamAccess.list);
 }
示例#8
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Beam", "B", "The created beam", GH_ParamAccess.item);
 }
示例#9
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Object", "O", "Updated Wind Object", GH_ParamAccess.item);
     pManager.AddGenericParameter("Graphics", "G", "Graphics Object", GH_ParamAccess.item);
 }
示例#10
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddBrepParameter("B", "Brep", "Resulding solid(s)", GH_ParamAccess.tree);
 }
示例#11
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new MovementParameter(), "Movement", "M", "Resulting Move instruction");  //Todo: beef this up to be more informative.
 }
示例#12
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("iField", "iField", "Field for mesh generation.", GH_ParamAccess.item);
 }
示例#13
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "M", "The output Mesh", GH_ParamAccess.item);
 }
示例#14
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new RobotParameter(), "Robot", "R", "Resulting Robot", GH_ParamAccess.item);  //Todo: beef this up to be more informative.
 }
示例#15
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Message", "Msg", "Status message of importing files", GH_ParamAccess.item);
 }
示例#16
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("iMeshField", "iF", "Field for mesh generation.", GH_ParamAccess.item);
     pManager.AddCircleParameter("Reference", "Geom", "Reference geometry representing the frustum.", GH_ParamAccess.list);
 }
示例#17
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("File Path", "R", "The resulting filepath of the saved image", GH_ParamAccess.item);
 }
示例#18
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("a pointer of TopoCreator", "TopoPtr", "a pointer of TopoCreator", GH_ParamAccess.item);
 }
示例#19
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     //"Set" components usually do not have any outputs.
 }
示例#20
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("List items", "ListItems", "Items of the list.", GH_ParamAccess.list);
 }
示例#21
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddCurveParameter("Bricks", "B", "Edge lines", GH_ParamAccess.tree);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("iMesh", "iM", "Iguana surface mesh.", GH_ParamAccess.item);
     pManager.AddGenericParameter("Entities", "Entities", "Information about the underlying entities used for meshing.", GH_ParamAccess.tree);
     pManager.AddTextParameter("Info", "Info", "Log information about the meshing process.", GH_ParamAccess.item);
 }
示例#23
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     //register the outputs
     pManager.AddLineParameter("Path Edges", "P", "Shortest Paths", GH_ParamAccess.tree);
     pManager.AddTextParameter("Message", "M", "Message", GH_ParamAccess.item);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("3DView", "V", "The 3D view containing your mesh.", GH_ParamAccess.item);
 }
示例#25
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
 }
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "M", "Extract isosurface.", GH_ParamAccess.item);
     pManager.AddNumberParameter("Time", "T", "time", GH_ParamAccess.list);
 }
示例#27
0
文件: CMesh.cs 项目: KaiSut0/Crane020
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("CMesh", "CMesh", "CMesh", GH_ParamAccess.item);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("environment", "env", "environment description", GH_ParamAccess.item);
 }
示例#29
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddIntegerParameter("Boundary Idices", "B", "the boundary list of the input mesh", GH_ParamAccess.tree);
     pManager.AddPointParameter("Boundary Vertices", "P", "the boundary vertices of the input mesh", GH_ParamAccess.tree);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Style", "S", Resources.Chart_StyleDesc, GH_ParamAccess.item);
 }