Beispiel #1
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Image", "I", "An Aviary Image or Bitmap", GH_ParamAccess.item);
 }
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "M", "Mesh", GH_ParamAccess.item);
     pManager.AddNumberParameter("Dist", "D", "Division distance", GH_ParamAccess.item, 10000);
     pManager[0].Optional = true;
 }
Beispiel #3
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Graph", "Graph", "Graph", GH_ParamAccess.item);
 }
Beispiel #4
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Dictionary", "Dictionary", "Dictionary", GH_ParamAccess.item);
     pManager.AddTextParameter("Key", "Key", "Key", GH_ParamAccess.item);
 }
Beispiel #5
0
 protected void AddAlphaParam(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddNumberParameter("Alpha", "A", "Alpha value of Activation Function", GH_ParamAccess.item, 2.0);
 }
Beispiel #6
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "M", "The Colored Quad Mesh", GH_ParamAccess.item);
     pManager.AddIntegerParameter("Color Channel", "C", "The Color channel to sample\n0 - Red\n1 - Green\n2 - Blue", GH_ParamAccess.item, 0);
     pManager.AddNumberParameter("Isovalue", "i", "The isovalue to search for (0-1)", GH_ParamAccess.item, 0.5);
 }
Beispiel #7
0
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
 }
Beispiel #8
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddTextParameter("Label", "L", "Label of the fuzzy set", GH_ParamAccess.item);
     pManager.AddNumberParameter("A", "A", "Value", GH_ParamAccess.item);
 }
Beispiel #9
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddBrepParameter("_plant2D", "_plant2D", "Geometry that represent ENVI-Met plant 2d.  Geometry must be a Surface or Brep on xy plane.", GH_ParamAccess.list);
     pManager.AddTextParameter("_plantId_", "_plantId_", "ENVI-Met plant id. You can use \"id outputs\" which comes from \"LB ENVI - Met Read Library\".\nDefault is 0000XX.", GH_ParamAccess.list, "0000XX");
     pManager[1].Optional = true;
 }
Beispiel #10
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Element", "E", "Element to Listen to", GH_ParamAccess.tree);
 }
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Issues", "i", "YouTrack Issues", GH_ParamAccess.list);
     pManager.AddTextParameter("States", "s", "States to report", GH_ParamAccess.list, "");
 }
Beispiel #12
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("List", "L", "The input list for double shift", GH_ParamAccess.list);
     pManager.AddBooleanParameter("Wrap", "W", "Wrap to list bounds", GH_ParamAccess.item, false);
     pManager[1].Optional = true;
 }
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Face", "Face", "Face", GH_ParamAccess.item);
     pManager.AddNumberParameter("Tolerance", "Tolerance", "Tolerance", GH_ParamAccess.item, 0.0001);
 }
Beispiel #14
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddParameter(new GH_PlanktonMeshParam(), "PMesh", "PMesh", "The input PlanktonMesh to use the topology from", GH_ParamAccess.item);
     pManager.AddPointParameter("Vertices", "Vertices", "The new list of vertex positions", GH_ParamAccess.list);
 }
Beispiel #15
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddTextParameter("filePath", "P", Resources.Data_FilePathDesc, GH_ParamAccess.item);
     pManager.AddGenericParameter("Domain", "D", Resources.Data_Domain, GH_ParamAccess.item);
     pManager[1].Optional = true;
 }
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("Wire", "Wire", "Wire", GH_ParamAccess.item);
     pManager.AddGenericParameter("Parent Topology", "Parent Topology", "Parent Topology", GH_ParamAccess.item);
 }
Beispiel #17
0
        protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
        {
            IGH_Param controllerParam = new GH_Params.ContollerParam();

            pManager.AddParameter(controllerParam, "Controller", "Controller", "Recives the output from a controller module", GH_ParamAccess.list);
        }
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "Mesh", "Mesh to inspect.", GH_ParamAccess.item);
 }
Beispiel #19
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("iFieldList", "iFieldList", "Fields to evaluate.", GH_ParamAccess.tree);
 }
Beispiel #20
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddIntegerParameter("Anchor Index", "Ind", "", GH_ParamAccess.list);
 }
Beispiel #21
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddTextParameter("Named Viewport", "view", "Provide the name of the viewport to be used.", GH_ParamAccess.item, "Top");
 }
Beispiel #22
0
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "Mesh", "Mesh", GH_ParamAccess.item);
     pManager.AddNumberParameter("Varibles", "Varibles", "dA, dB, k, f", GH_ParamAccess.list);
     //  pManager.AddIntegerParameter("Index", "Index", "Index", GH_ParamAccess.item);
 }
Beispiel #23
0
 protected void AddActivationParam(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddIntegerParameter("Activation", "F", "Activation Function. " + ActivationFunctionDescription(), GH_ParamAccess.item, 0);
 }
Beispiel #24
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddTextParameter("_input", "_input", "DummyVariable called initiated as flase", GH_ParamAccess.list, "False");
 }
Beispiel #25
0
 protected void AddResetParam(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddBooleanParameter("Reset", "R", "Resets the Neural Network. WARNING: Doing this will erase all training data! Use Button to toggle", GH_ParamAccess.item, false);
 }
Beispiel #26
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddGenericParameter("iMesh", "iM", "Base Iguana mesh.", GH_ParamAccess.item);
     pManager.AddIntegerParameter("Element", "e-Key", "Element Key.", GH_ParamAccess.item);
 }
Beispiel #27
0
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddCurveParameter("Curve A", "crvA", "first curve - A", GH_ParamAccess.item);
     pManager.AddCurveParameter("Curve B", "crvB", "second curve - B", GH_ParamAccess.item);
 }
Beispiel #28
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddTextParameter("Radio Button Name", "N", "The name of the radio button.", GH_ParamAccess.item);
     pManager.AddTextParameter("Radio Button Group", "G", "The group the radio button belongs to. \n Only one button in a group can be selected at a time.", GH_ParamAccess.item);
 }
Beispiel #29
0
 /// <summary>
 /// Registers all the input parameters for this component.
 /// </summary>
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddBooleanParameter("Load Boston Dataset? ", "LoadBoston", "Would you like to load Boston Dataset ? ", GH_ParamAccess.item, false);
 }
Beispiel #30
0
 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh", "Mesh", "Mesh", GH_ParamAccess.item);
     pManager.AddGenericParameter("A", "A", "Apoint from region, zoom to add more inputs", GH_ParamAccess.item);
 }