37 lines
872 B
OpenSCAD
37 lines
872 B
OpenSCAD
include <common.scad>
|
|
|
|
module right_half_components() {
|
|
cube([1,1,1]);
|
|
}
|
|
|
|
module right_half_orig() {
|
|
translate(BASE_MODEL_TRANSLATE) import(file = "right-half.3mf");
|
|
}
|
|
// #right_half_orig();
|
|
|
|
module right_half_door_only() {
|
|
translate(BASE_MODEL_TRANSLATE+[10.25, -85, -16]) import(file = "right-half_door-only.stl");
|
|
}
|
|
// #right_half_door_only();
|
|
|
|
module right_half_hinge_only() {
|
|
translate(BASE_MODEL_TRANSLATE+[0.25, -12.3, -6]) import(file = "right-half_hinge-only.3mf");
|
|
}
|
|
// #right_half_hinge_only();
|
|
|
|
module right_half_connector() {
|
|
translate(BASE_MODEL_TRANSLATE+[5.35, -12.3, -11]) import(file = "right-half_connector.3mf");
|
|
}
|
|
// #right_half_connector();
|
|
|
|
module right_half() {
|
|
right_half_connector();
|
|
right_half_door_only();
|
|
right_half_hinge_only();
|
|
}
|
|
|
|
right_half();
|
|
// #right_half_components();
|
|
|
|
// #rotate([0, 0, 90]) battery();
|