脚本式参数化三维建模

脚本式参数化三维建模

测试环境 AnyCAD Editor 2.0.1

 关键字: opencascade, ogre3d, vtk, anycad, freeware, acis

1. 首先建立参数

打开参数管理窗口,建立double类型的参数, Id分别为:

Height

Radius

Angle

2. 编写脚本

aBrepTool=BrepTools();
aHeightParam = theParameterSet:FindParameter(“Height”)
aAngleParam = theParameterSet:FindParameter(“Angle”)
aRadiusParam = theParameterSet:FindParameter(“Radius”)
aShape=aBrepTool:MakeCylinder(Vector3(0,0,0), Vector3(0,0,1), aRadiusParam:AsDouble(), aHeightParam:AsDouble(), aAngleParam:AsDouble())
theShape = aBrepTool:Fillet(aShape, 5)

3. 生成模型
脚本式参数化三维建模_第1张图片

4. 程序下载
本程序在各大下载站点均有下载

你可能感兴趣的:(脚本式参数化三维建模)