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


C# GH_Component.Register_VectorParam方法代码示例

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


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

示例1: RegisterOutputParams

        protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
        {
            pManager.Register_StringParam("output", "out", "error messages from the system");

            pManager.Register_PlaneParam("Proxies", "P", "the planes for the proxies");

            pManager.Register_CurveParam("MeshAsCurves", "MC", "the connectivity mesh as a set of curves");

            pManager.Register_GenericParam("HLwingMesh", "WM", "the winged mesh to put into the next function");

            pManager.Register_VectorParam("Normals", "N", "the normals for each face");

            pManager.Register_PointParam("Centres", "C", "the centres for each face");

            pManager.Register_CurveParam("VoronoiOnMesh", "VOM", "non planar voronoi from clusters");
        }
开发者ID:formateng,项目名称:giraffe,代码行数:16,代码来源:Component_OBSOLETE.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

示例3: RegisterInputParams

 protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
 {
     pManager.Register_VectorParam("Vectors", "Vecs", "Control vectors", GH_ParamAccess.list);
     pManager.Register_PointParam(
         "Destination",
         "Pt",
         "Point around which to construct destination mesh",
         new Point3d(0.0, 0.0, 0.0),
         GH_ParamAccess.item);
 }
开发者ID:SlateShingleStudio,项目名称:Cthulhu,代码行数:10,代码来源:SortOfDomes_GH.cs


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