OpenSCAD Tutorial #2

Membuat Bola

Skrip: sphere()
Posisi tengah bola ditempatkan pada titik [0,0,0].

Parameter:
 r : jari-jari
d : diameter
$fa: Sudut frame
$fs: Ukuran frame
$fn: resolusi


sphere(r = 10);
sphere(d = 2);
sphere(d = 10);




// bola dengan resolusi 100  jari-jari 2mm
sphere(2, $fn=100);



// does not have as many small triangles on the poles of the sphere
sphere(2, $fa=5, $fs=0.1);



Komentar

Postingan populer dari blog ini

OpenSCAD Tutorial #1