-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxvt.scad
64 lines (52 loc) · 1.12 KB
/
xvt.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
$fn = 50;
_size = 30;
union() {
union()
{
//cube([15,15,15], center=true);
sphere(d = _size);
rotate([90, 0, 0])
{
translate([0,0,-_size/2])
{
linear_extrude(_size)
x();
}
}
rotate([90, 0, 90])
{
translate([0,0,-_size/2])
{
linear_extrude(_size)
v();
}
}
rotate([0, 0, 0])
{
translate([0,0,-_size/2])
{
linear_extrude(_size)
t();
}
}
}
//cube([10, 10, 10], center=true);
}
module x() {
difference() {
//square([10,10], center=true);
text("X", halign="center", valign="center", size=_size*2/3 );
}
}
module v() {
difference() {
//square([10,10], center=true);
text("V", halign="center", valign="center", size=_size*2/3 );
}
}
module t() {
difference() {
//square([10,10], center=true);
text("T", halign="center", valign="center", size=_size*2/3);
}
}