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


C# GH_Component.Register_GeometryParam方法代码示例

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


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

示例1: 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_CurveParam("Lines", "Lns", "Lines that represent the area on the resulting graph occupied by each hour given", GH_ParamAccess.list);
     pManager.Register_ColourParam("Colors", "Clrs", "Colors corresponding to each line produced", GH_ParamAccess.item);
     pManager.Register_MeshParam("Mesh", "Msh", "A mesh representing the resulting graph, with vertex colors assigned where applicable.", GH_ParamAccess.item);
     pManager.Register_GeometryParam("Trim Boundary", "Bnd", "A Trimming Boundary.  May be a rectangle or a circle, depending on the plot type.", GH_ParamAccess.item);
 }
开发者ID:ksteinfe,项目名称:dyear,代码行数:9,代码来源:Components+Spatializing.cs

示例2: RegisterOutputParams

 protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
 {
     pManager.Register_VectorParam("Displacement vectors", "dV", "Nodal Displacement Vector");
     pManager.Register_PointParam("Displaced points", "P", "Position of displaced nodes");
     pManager.Register_GeometryParam("Displaced elements", "G", "Geometry of displaced elements");
 }
开发者ID:AndreasBak,项目名称:GrasshopperSharpFE,代码行数:6,代码来源:NodeDisplacementResultsComponent.cs


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