Rhino C#二次开发笔记

1、引用rhino安装目录下的 RhinoComman.dll;

2、拖拽入grasshopper的插件,会自动拷贝到这个目录:C:\Users\Administrator\AppData\Roaming\Grasshopper\Libraries

3、在电池输出信息:AddRuntimeMessage(GH_RuntimeMessageLevel.Error, "Please check input");

4、GH_Point 是对Rhino.Point3d的封装,使用.Value获得

Rhino C#二次开发笔记_第1张图片

5、Input可填写默认值:pManager.AddNumberParameter("Length", "Length", "Length", GH_ParamAccess.item, 1.0);

6、取输入值时,可以用参数的name获得:DA.GetData("Length", ref iLength);;

7、设置输出值时,可输出自定义类型的数据结构:

Rhino C#二次开发笔记_第2张图片

8、

 

你可能感兴趣的:(C#,Rhino,犀牛)