summaryrefslogtreecommitdiff
path: root/Schrankgriff.scad
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2023-02-08 23:26:44 +0100
committerErich Eckner <git@eckner.net>2023-02-08 23:26:44 +0100
commit2bd30c1b8ddcea5b63572115135fac58c3fd7a9c (patch)
tree98f32261a31ba02a4e15092e41d7eb37e91fdefc /Schrankgriff.scad
downloadSchrankgriff-2bd30c1b8ddcea5b63572115135fac58c3fd7a9c.tar.xz
erster Versuch
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