summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Schrankgriff.scad36
1 files changed, 36 insertions, 0 deletions
diff --git a/Schrankgriff.scad b/Schrankgriff.scad
new file mode 100644
index 0000000..669304a
--- /dev/null
+++ b/Schrankgriff.scad
@@ -0,0 +1,36 @@
+Maus = false;
+
+epsilon = 0.05;
+
+if (Maus) {
+ difference(){
+ include<Schrankgriff_mit_Maus.scad>;
+ intersection() {
+ translate([-epsilon,0,-1])
+ union(){
+ translate([-34,-4.5-epsilon,0])
+ cube([100,9 + 2*epsilon,100]);
+ linear_extrude(100)
+ polygon(
+ points = [[-34,-4.5-epsilon],[-34,4.5+epsilon],[-38.5,0]]
+ );
+ };
+ translate([0,0,-70])
+ sphere(r = 95 + epsilon, $fn = 500);
+ };
+ }
+} else {
+ intersection(){
+ include<Schrankgriff_mit_Maus.scad>;
+ union() {
+ translate([-34,-4.5,0])
+ cube([100,9,100]);
+ linear_extrude(100)
+ polygon(
+ points = [[-34,-4.5],[-34,4.5],[-38.5,0]]
+ );
+ };
+ translate([0,0,-70])
+ sphere(r = 95, $fn = 500);
+ }
+} \ No newline at end of file