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