ImplicitCAD 可编程的 CAD 软件

ImplicitCAD 是一个开源的可编程的 CAD 软件。采用 Haskell 语言开发。

示例代码:

/* This creates a twisted extrusion of 5 unioned circles
 * with gratuitous amounts of rounding. Try it out! */

linear_extrude (height = 40, twist(h) = 35*cos(h*2*pi/60))
  union ( r = 8) {
    circle (10);
    translate ([22,0]) circle (10);
    translate ([0,22]) circle (10);
    translate ([-22,0]) circle (10);
    translate ([0,-22]) circle (10);
  }

效果图:

© 版权声明
THE END
喜欢就支持一下吧
点赞750 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容