summaryrefslogtreecommitdiff
path: root/Schrankgriff.scad
diff options
context:
space:
mode:
Diffstat (limited to 'Schrankgriff.scad')
-rw-r--r--Schrankgriff.scad31
1 files changed, 31 insertions, 0 deletions
diff --git a/Schrankgriff.scad b/Schrankgriff.scad
new file mode 100644
index 0000000..275f87e
--- /dev/null
+++ b/Schrankgriff.scad
@@ -0,0 +1,31 @@
+translate([-32.5,0,0])
+ difference(){
+ scale([6/4.5,1,1])
+ cylinder(h = 16, r = 4.5, $fn = 100);
+ translate([0,0,-10])
+ cylinder(h = 20, r = 1.25, $fn = 100);
+ };
+translate([32.5,0,0])
+ difference(){
+ scale([6/4.5,1,1])
+ cylinder(h = 16, r = 4.5, $fn = 100);
+ translate([0,0,-10])
+ cylinder(h = 20, r = 1.25, $fn = 100);
+ };
+
+intersection(){
+ hull(){
+ translate([-32.5,0,5])
+ scale([6/4.5,1,1])
+ cylinder(h = 100, r = 4.5, $fn = 100);
+ translate([32.5,0,5])
+ scale([6/4.5,1,1])
+ cylinder(h = 100, r = 4.5, $fn = 100);
+ };
+ difference(){
+ translate([0,0,-70])
+ sphere(r = 95, $fn = 100);
+ translate([0,0,-70])
+ sphere(r = 90, $fn = 100);
+ };
+}; \ No newline at end of file