-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharr.scad
41 lines (34 loc) · 1.1 KB
/
arr.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
33
34
35
36
37
38
39
40
41
use <write/Write.scad>;
$fn=32;
wide=10;
tall=4;
thick=1;
scale(5) {
difference() {
union() {
translate([0,0,-thick/4]) cube([wide,tall,thick/2], center=true);
translate([.1,0,0]) scale([.95,1,1]) write("WOW", center=true);
//translate([0,2.4,0]) rotate([0,90,0]) rotate([0,0,360/8])
//cylinder(r=.6, h=10,$fn=4, center=true);
//translate([0,-2.4,0]) rotate([0,90,0]) rotate([0,0,360/8])
//cylinder(r=.6, h=10,$fn=4, center=true);
//translate([4.43,0,0]) rotate([90,0,0]) rotate([0,0,360/8])
//cylinder(r=.6, h=5,$fn=4, center=true);
//translate([-4.43,0,0]) rotate([90,0,0]) rotate([0,0,360/8])
//cylinder(r=.6, h=5,$fn=4, center=true);
translate([5,0,0]) cylinder(r=1,h=1,center=true);
translate([-5,0,0]) cylinder(r=1,h=1,center=true);
translate([0,2.4,0])
cube([wide,thick,1], center=true);
translate([0,-2.4,0])
cube([wide,thick,1], center=true);
translate([4.5,0,0])
cube([1,tall,1], center=true);
translate([-4.5,0,0])
cube([1,tall,1], center=true);
}
translate([0,0,-1]) cube([20,20,1], center=true);
translate([5,0,0]) cylinder(r=.5,h=1,center=true);
translate([-5,0,0]) cylinder(r=.5,h=1,center=true);
}
}