thickness prototype 1

This commit is contained in:
Patrick Opheys
2026-05-08 21:12:27 +02:00
parent c59d05259e
commit 8b558315c0
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.stl

12
HairDryerHolder.scad Normal file
View File

@@ -0,0 +1,12 @@
$fn = 50;
height = 20;
difference() {
cylinder(height, 50, 50);
cylinder(height, 40, 40);
translate([30,0,height/2]) cube([50,20,height], center = true);
}