当前位置: 首页>>代码示例>>C#>>正文


C# GH_Component.RegisterParam方法代码示例

本文整理汇总了C#中GH_Component.RegisterParam方法的典型用法代码示例。如果您正苦于以下问题:C# GH_Component.RegisterParam方法的具体用法?C# GH_Component.RegisterParam怎么用?C# GH_Component.RegisterParam使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GH_Component的用法示例。


在下文中一共展示了GH_Component.RegisterParam方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.Register_GenericParam("Starting Data", "S", "Starting Data. This will be output just once before any looping is performed.");
     P = new HSDataParam(this, (GH_Param<IGH_Goo>)Params.Input[0]);
     B = new HSBoolParam(this);
     T = new HSTriggerParam(this);
     pManager.RegisterParam(P);
     pManager.RegisterParam(B);
     pManager.RegisterParam(T);
 }
开发者ID:kanukanun,项目名称:Hoopsnake,代码行数:10,代码来源:HSComponent.cs

示例2: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_SpatialGraph(), "Spatial Graph", "S", "The Spatial Graph.", GH_ParamAccess.item);
     pManager.Register_StringParam("Script", "Func", "The function to execute", GH_ParamAccess.item);
     pManager.Register_DoubleParam("Value", "V", "Initial Values", GH_ParamAccess.list);
     pManager.Register_IntegerParam("Generations", "G", "Number of Generations to create.", 0, GH_ParamAccess.item);
 }
开发者ID:ksteinfe,项目名称:ants,代码行数:7,代码来源:AntsEngine.cs

示例3: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The Dhours to plot", GH_ParamAccess.list);
     pManager.Register_StringParam("Value Key", "Key", "The name of the value to plot", GH_ParamAccess.item);
     pManager.Register_IntervalParam("Domain", "Rng", "The [optional] domain to plot, with black corresponding to the low value and white to the high value.  Defaults to the max and min of the given values", GH_ParamAccess.item);
     Params.Input[2].Optional = true;
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:7,代码来源:Heatmap.cs

示例4: RegisterInputParams

        protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
        {
            pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The Dhours to which to assign positions", GH_ParamAccess.tree);
            pManager.Register_StringParam("Key", "Key", "The key associated with the y-axis", GH_ParamAccess.item);
            pManager.Register_IntervalParam("Scale", "Scl", "An interval that associates hour values with the graph height.  In effect, sets the vertical scale of the graph.  Defaults to the max and min of given values.", GH_ParamAccess.item);
            pManager.Register_PlaneParam("Location", "Loc", "The location and orientation (as a plane) at which to draw this graph", new Plane(new Point3d(0, 0, 0), new Vector3d(0, 0, 1)), GH_ParamAccess.item);
            pManager.Register_2DIntervalParam("Graph Dimensions", "Dim", "The dimensions of the resulting graph", GH_ParamAccess.item);
            pManager.Register_DoubleParam("Subgraph Width", "Wid", "The width of each diurnal subgraph, as a percentage of available area (0 -> 1).  Defaults to 1.0", 1.0, GH_ParamAccess.item);

            this.Params.Input[2].Optional = true;
            this.Params.Input[3].Optional = true;
            this.Params.Input[4].Optional = true;
            this.Params.Input[5].Optional = true;
        }
开发者ID:ksteinfe,项目名称:dyear,代码行数:14,代码来源:Components+Spatializing.cs

示例5: RegisterInputParams

        protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
        {
            pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The Dhours to which to apply color values", GH_ParamAccess.list);
            pManager.Register_StringParam("Key A", "Key A", "The primary key on which to base colorization", GH_ParamAccess.item);
            pManager.Register_IntervalParam("Domain A", "Rng A", "The domain that maps colors for Key A to their corresponding color.  Defaults to the range of given values for Key A.\nValues that fall outside of the given range will be reset to the maximum or minimum color value.", GH_ParamAccess.item);
            pManager.Register_StringParam("Key B", "Key B", "The secondary key on which to base colorization", GH_ParamAccess.item);
            pManager.Register_IntervalParam("Domain B", "Rng B", "The domain that maps colors for Key B to their corresponding color.  Defaults to the range of given values for Key B.\nValues that fall outside of the given range will be reset to the maximum or minimum color value.", GH_ParamAccess.item);
            pManager.Register_ColourParam("A High, B High", "Hi-Hi", "The color to assign when A is high and B is high.  Defaults to red.", Color.Red, GH_ParamAccess.item);
            pManager.Register_ColourParam("A High, B Low", "Hi-Lo", "The color to assign when A is high and B is low.  Defaults to yellow.", Color.Yellow, GH_ParamAccess.item);
            pManager.Register_ColourParam("A Low, B High", "Lo-Hi", "The color to assign when A is high and B is high.  Defaults to blue.", Color.Blue, GH_ParamAccess.item);
            pManager.Register_ColourParam("A Low, B Low", "Lo-Lo", "The color to assign when A is high and B is low.  Defaults to white.", Color.White, GH_ParamAccess.item);

            this.Params.Input[2].Optional = true;
            this.Params.Input[4].Optional = true;
        }
开发者ID:ksteinfe,项目名称:dyear,代码行数:15,代码来源:Components+Decorating.cs

示例6: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The spatialized Dhours", GH_ParamAccess.list);
     pManager.Register_PointParam("Positions", "Pts", "The assigned positions of the hours", GH_ParamAccess.list);
     pManager.Register_RectangleParam("Regions", "Rgns", "Regions that represent the area on the resulting graph occupied by each hour given", GH_ParamAccess.list);
     pManager.Register_MeshParam("Mesh", "Msh", "A mesh representing the resulting graph, with vertex colors assigned where applicable.", GH_ParamAccess.item);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:7,代码来源:Components+Spatializing.cs

示例7: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The Dhours from which to extract values", GH_ParamAccess.list);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:4,代码来源:Components+Primitive.cs

示例8: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The colorized Dhours", GH_ParamAccess.list);
     pManager.Register_ColourParam("Colors", "color", "The assigned colors", GH_ParamAccess.list);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:5,代码来源:Components+Decorating.cs

示例9: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhour", "Dhour", "The resulting Dhour", GH_ParamAccess.list);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:4,代码来源:Components+Primitive.cs

示例10: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new GHParam_DHr(), "Dhours", "Dhrs", "The Dhours that were plotted", GH_ParamAccess.list);
     pManager.Register_DoubleParam("Values", "Vals", "The values displayed in the heatmap", GH_ParamAccess.list);
     pManager.Register_IntervalParam("Range", "Rng", "An interval that describes the range of values found in the given list of Dhours for this key", GH_ParamAccess.item);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:6,代码来源:Heatmap.cs

示例11: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.RegisterParam(new SODesigner_GHParam(), "d", "d", "Designer output", GH_ParamAccess.item);
 }
开发者ID:sustainability-open,项目名称:sustainability-open,代码行数:4,代码来源:SODesigner_Component.cs

示例12: RegisterOutputParams

        protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
        {
            pManager.RegisterParam(ConstructOutOutputParam());

              AddDefaultOutput(pManager);
              VariableParameterMaintenance();
        }
开发者ID:spearfish,项目名称:ghpython,代码行数:7,代码来源:ScriptingAncestorComponent.cs

示例13: AddDefaultInput

 protected override void AddDefaultInput(GH_Component.GH_InputParamManager inputManager)
 {
     inputManager.RegisterParam(ConstructVariable(GH_VarParamSide.Input, "x"));
       inputManager.RegisterParam(ConstructVariable(GH_VarParamSide.Input, "y"));
 }
开发者ID:rivermao,项目名称:ghpython,代码行数:5,代码来源:PythonComponent.cs

示例14: AddDefaultOutput

 protected override void AddDefaultOutput(GH_Component.GH_OutputParamManager outputManager)
 {
     outputManager.RegisterParam(ConstructVariable(GH_VarParamSide.Output, "a"));
 }
开发者ID:rivermao,项目名称:ghpython,代码行数:4,代码来源:PythonComponent.cs

示例15: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.Register_GenericParam("Geometry", "geom", "The geometry to bake", GH_ParamAccess.tree);
     pManager.RegisterParam(new GHParam_Decodes_Attributes(), "Properties", "props", "The properties to apply to the geometry when baking.  See the help file for documentation", GH_ParamAccess.tree);
 }
开发者ID:jhaazpr,项目名称:decodes,代码行数:5,代码来源:DecodesBakeProps.cs


注:本文中的GH_Component.RegisterParam方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。