refactored files add some new ones

This commit is contained in:
2026-02-23 20:46:02 +13:00
parent ade276e1ec
commit 3a634cdb18
5 changed files with 293 additions and 0 deletions

11
modules/wafer.scad Normal file
View File

@@ -0,0 +1,11 @@
// [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);
}
}
}