Files
openscad_parameteric_IDT_cr…/modules/wafer.scad

12 lines
187 B
OpenSCAD

// [TODO] try add the flat edge on to the wafer
module wafer(d) {
color([128/255, 128/255, 128/255]) {
translate([0, 0, -1]) {
circle(r=d/2);
}
}
}