-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleslie_cabinet.scad
156 lines (146 loc) · 2.95 KB
/
leslie_cabinet.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
$fn=50;
/* Leslie Speaker assembly */
union() {
translate([1,0.75,0.75]) color("darkgray") {
difference() {
cube([3,15,21]);
translate([-0.25,0.75,0.75]) {
cube([1.75,13.5,19.5]);
}
}
}
translate([4,8,14.5]) color("tan") {
rotate(a=[0,90,0]) {
cylinder(r=6.5,h=8);
}
}
translate([4,2,2]) color("gray") {
cube([6.5,4,4]);
}
}
/* cabinet bottom */
difference() {
color("tan") cube([13.5, 0.75, 23.25]);
translate([5,-0.5,10]) {
cube([6,1.5,8]);
}
}
/* cabinet top */
difference() {
translate([0,15.75,0]) color("tan") {
cube([13.5,0.75, 23.25]);
}
translate([5,15.5,10]) {
cube([6,1.5,8]);
}
}
/* speaker-side panel */
/* x=0 to sit flush */
translate([0,0.75,0]) color("wheat") {
cube([0.75,15,23.25]);
}
/* cylinder-side panel*/
/* x=12.75 to sit flush */
translate([12.75,0.75,0]) color("wheat") {
cube([0.75,15,23.25]);
}
/* grill */
/* z=21.5 to sit flush */
translate([0.75,0.75,26.70]) color("wheat") {
difference() {
cube([12,15,0.75]);
translate([4,3.5,-0.25]) {
cube([6,8,1.5]);
}
}
}
/* name plate */
translate([1.75,1.5,22.1]) color("black") {
cube([1.4375,13.5,0.5]);
}
/* grill border */
/* z=22.5 to sit flush */
translate([0.75,0.75,32.5]) color("burlywood") {
difference() {
cube([12,15,0.75]);
translate([1,1,-0.5]) {
cube([10,13,1.5]);
}
}
}
/* rear panel */
/* z=0 to sit flush */
translate([0.75,0.75,0]) color("burlywood") {
difference() {
cube([12,15,0.75]);
/* jack */
translate([2.125,2.125,-0.25]) {
cylinder(r=0.625,h=1.5);
}
/* sound port */
/*
translate([4,3.5,-0.25]) {
cube([6,8,1.5]);
}
*/
/* power connector */
translate([9.5,1.5,-0.25]) {
cube([1.25,1,1.5]);
}
/* Leslie switch */
translate([9.5,11.5,-0.25]) {
cube([1,2.4,1.5]);
}
/*
translate([5.5,1.5,-0.25]) {
cube([2.4,1,1.5]);
}
*/
}
}
/* rear panel cleats */
/* left */
translate([11.75,0.75,0.75]) {
cube([1,15,1]);
}
/* top */
translate([4.5,14.75,0.75]) {
cube([7,1,1]);
}
/* bottom */
translate([4.5,0.75,0.75]) {
cube([7,1,1]);
}
/* front panel cleats */
/* right bottom */
translate([11.75,0.75,20.75]) {
cube([1,4,1]);
}
/* right top */
translate([11.75,11.75,20.75]) {
cube([1,4,1]);
}
/* top */
translate([4.5,14.75,20.75]) {
cube([7,1,1]);
}
/* bottom */
translate([4.25,0.75,20.75]) {
cube([7,1,1]);
}
/* reverb unit */
/*
16.75"
4.5"
1.5" deep, with bushings
*/
/* cut list */
/*
bottom: 13.5" x 23.25"
side: 15" x 23.25"
front baffle: 12" x 15"
grill: 12" x 15"
top: 13.5" x 23.25"
side: 15" x 23.25"
rear panel: 12" x 15"
*/