12 lines
193 B
OpenSCAD
12 lines
193 B
OpenSCAD
|
|
|
|
|
|
// [TODO] try add the flat edge on to the wafer
|
|
module wafer(d) {
|
|
if ($preview) {
|
|
color([128/255, 128/255, 128/255])
|
|
translate([0, 0, -1])
|
|
circle(r=d/2);
|
|
}
|
|
}
|