summaryrefslogtreecommitdiff
path: root/Optokopplerhalterung.scad
diff options
context:
space:
mode:
Diffstat (limited to 'Optokopplerhalterung.scad')
-rw-r--r--Optokopplerhalterung.scad22
1 files changed, 22 insertions, 0 deletions
diff --git a/Optokopplerhalterung.scad b/Optokopplerhalterung.scad
new file mode 100644
index 0000000..fcf8c35
--- /dev/null
+++ b/Optokopplerhalterung.scad
@@ -0,0 +1,22 @@
+x = 100;
+y1 = 3;
+y2 = 2;
+y3 = 12;
+z = 67;
+l = 20;
+
+d = 1.5;
+
+difference() {
+ translate([-d,-d,-d])
+ cube([2*d+x,2*d+y1+y2+y3,2*d+z]);
+ translate([0,0,l])
+ cube([x-d,y1+y2+y3,z]);
+ cube([x,y1-d,z+2*d]);
+ translate([0,y1,0])
+ cube([x,y2,z+2*d]);
+ translate([0,y1+y2+d,0])
+ cube([x,y3-d,z+2*d]);
+ translate([d,0,0])
+ cube([x-2*d,y1+y2+y3,z+2*d]);
+} \ No newline at end of file