15 lines
384 B
OpenSCAD
15 lines
384 B
OpenSCAD
// Supports to mount internal components in the box
|
|
|
|
module supports_speaker() {
|
|
difference() {
|
|
cylinder(d = 84, h = 2, center = true);
|
|
cylinder(d = 80, h = 2.1, center = true);
|
|
}
|
|
}
|
|
|
|
module supports_battery() {
|
|
difference() {
|
|
cube([71, 23, 12], true);
|
|
translate([0, 0, 3]) rotate([0, 90, 0]) cylinder(h = 67, d = 19, center = true);
|
|
}
|
|
} |