make sure that wafer doesnt appear in the final design

This commit is contained in:
2026-02-23 21:02:30 +13:00
parent 7382cca207
commit bdc5bbbd6a

View File

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