9 lines
174 B
OpenSCAD
9 lines
174 B
OpenSCAD
// Supports to mount internal components in the box
|
|
|
|
module supports_speaker() {
|
|
difference() {
|
|
cylinder(d = 84, h = 2);
|
|
cylinder(d = 80, h = 2);
|
|
}
|
|
}
|