Skip to content

Commit 32fa475

Browse files
author
Philipp Hufnagl
committed
add scad file from box
1 parent c5d8073 commit 32fa475

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

lightswitch_box.scad

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
wall = 2;
2+
3+
difference()
4+
{
5+
6+
cube([40,40,38]);
7+
translate([wall,wall,wall])
8+
cube([40-wall*2,40-wall * 2, 38 -wall]);
9+
10+
translate([40* 0.3333,40/2,0])
11+
cylinder(d=7,wall);
12+
13+
translate([40* 0.6666,40/2,0])
14+
cylinder(d=7,wall);
15+
16+
translate([40/2-5,0,30])
17+
cube ([10,10,10]);
18+
19+
}
20+
21+
translate([45,0,0])
22+
cube([40,40,2]);

0 commit comments

Comments
 (0)