12 lines
211 B
OpenSCAD
12 lines
211 B
OpenSCAD
include <common.scad>
|
|
|
|
module right_half_components() {
|
|
cube([1,1,1]);
|
|
}
|
|
|
|
module right_half() {
|
|
translate(BASE_MODEL_TRANSLATE) import(file = "right-half.3mf");
|
|
}
|
|
|
|
right_half();
|
|
#right_half_components(); |