Files
creaturedex/model/right-half.scad
T
Johannes Wendel f664d04eb7 Add parts separately
* door is stl, as 3mf was damaged
2026-07-26 14:39:39 +02:00

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();