This commit is contained in:
sirlilpanda
2026-07-13 17:38:03 +12:00
parent 9f4ce14d35
commit 726bbd469e
45 changed files with 16366785 additions and 89 deletions

View File

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