代码拉取完成,页面将自动刷新
三维模型
1】C语言格式 的 三维模型编辑器 openscad
安装:
sudo apt-get install openscad
运行:
openscad
编辑:
在openSCAD的编辑器,输入一下命令: 长宽高分别为 2 3 4的长方体方体
规则形状:
cube([2,3,4]);
cube(30, center=true); //立方体 坐标中心为几何中心
sphere(20); //半径 20 的球体
cylinder(h=40, r=10); //圆柱体 底面半径10 高 40
函数运算
1) 差运算
difference() {
cube(30, center=true); // 立方体 内中心 抠掉 球体
sphere(20);
}
2)平移运算
translate([0, 0, 30]) {//沿 z轴平移 30
cylinder(h=40, r=10);
}
3)颜色函数
color([1,0,0]) cube([2,3,4]); // 红色 长方体
translate([3,0,0])// x轴 平移 3
color([0,1,0]) cube([2,3,4]); // 绿色
translate([6,0,0])
color([0,0,1]) cube([2,3,4]); // 蓝色
4) 联合使用改变颜色
translate([0,0,0])
{
color([0,0,1])
cube([2,3,4]);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。