example001.scad 是它第一個範例, 以下步驟將會開啟一個範例:
下拉功能表 File > Examples > example001.scad
開啟後, 你可以看到編輯窗裡的內容, 如下:
module example001() {
function r_from_dia(d) = d / 2;
module rotcy(rot, r, h) {
rotate(90, rot)
cylinder(r = r, h = h, center = true);
}
difference() {
sphere(r = r_from_dia(size));
rotcy([0, 0, 0], cy_r, cy_h);
rotcy([1, 0, 0], cy_r, cy_h);
rotcy([0, 1, 0], cy_r, cy_h);
}
size = 50;
hole = 25;
cy_r = r_from_dia(hole);
cy_h = r_from_dia(size * 2.5);}
example001();
你可以按下鍵盤的 <F6>, 然後觀察視窗右下角落渲染百分比圖形跑到 1000/1000 時,
視窗右上角落就會出現如下之圖形:
沒有留言:
張貼留言