Files
glovebox/models/glovebox_base/base_plate.scad

17 lines
370 B
OpenSCAD

include <../../config.scad>;
module base_plate() {
color("darkgrey")
difference() {
// Body
cube(R_BASE_PLATE, center = true);
// Fastener holes
}
// Shopping
echo(str("Aluminium sheet: Base plate ", R_BASE_PLATE[0], "mm x ", R_BASE_PLATE[1], "mm x ", R_BASE_PLATE[2], "mm - x1"));
}
$fn = 50;
// test output
base_plate();