Files
Fabula/enclosure/fabula_enclosure.scad

19 lines
414 B
OpenSCAD

use <box.scad>
use <supports.scad>
use <cutouts.scad>
// FABULA open source storyteller enclosure
// TODO: open hardware logo, Fabula logo, cutouts for components and buttons, tag slot with led mount
module fabula_enclosure_bottom() {
cap();
}
module fabula_enclosure_top() {
box();
}
translate([0, -60, 0]) rotate([180, 0, 0]) fabula_enclosure_bottom();
translate([0, 60, 0]) fabula_enclosure_top();