tray fix + hole fixes
This commit is contained in:
+1
-1
@@ -70,7 +70,7 @@ def main() -> None:
|
|||||||
raise SystemExit(f"Missing file: {tray_scad}")
|
raise SystemExit(f"Missing file: {tray_scad}")
|
||||||
|
|
||||||
render_scad(pot_scad, OUT_DIR / "pot.stl", base_radius, wall_height, wall_height_tray)
|
render_scad(pot_scad, OUT_DIR / "pot.stl", base_radius, wall_height, wall_height_tray)
|
||||||
render_scad(tray_scad, OUT_DIR / "tray.stl", base_radius, wall_height, wall_height_tray)
|
render_scad(tray_scad, OUT_DIR / "tray.stl", base_radius+10, wall_height, wall_height_tray)
|
||||||
|
|
||||||
print("\nDone.")
|
print("\nDone.")
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -56,7 +56,7 @@ module holes_pattern() {
|
|||||||
union() {
|
union() {
|
||||||
circle(d = hole_d);
|
circle(d = hole_d);
|
||||||
|
|
||||||
for(r = [18, 30]) {
|
for(r = [base_radius * 0.33, base_radius * 0.66]) {
|
||||||
for(a = [0 : 60 : 359]) {
|
for(a = [0 : 60 : 359]) {
|
||||||
rotate([0, 0, a])
|
rotate([0, 0, a])
|
||||||
translate([r, 0, 0])
|
translate([r, 0, 0])
|
||||||
|
|||||||
Reference in New Issue
Block a user