-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmall_stand_v1.scad
33 lines (27 loc) · 985 Bytes
/
small_stand_v1.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$fn=90;
// 2d
module 2d_layout() {
rotate (a=0,v=[0,0,0]) translate([0,0,0]) projection(cut = true) side();
}
2d_layout();
module side() {
minkowski(){
difference() {
hull () {
translate ([10,15,0]) cylinder (r =10);
translate ([155,170,0]) cylinder (r =10);
translate ([10,215,0]) cylinder (r =10);
translate ([35,5,0]) cylinder (r =10);
}
hull () {
translate ([290,270,0]) cylinder (r =4 );
translate ([145,270,0]) cylinder (r =4 );
translate ([40,15,0]) cylinder (r =4 );
translate ([100,-5,0]) cylinder (r =4 );
}
translate ([-60,110,0]) cylinder(r=90);
translate ([50,170,0]) cylinder(r=16);
}
cylinder(r=3);
}
}