Files
creaturedex/model/left-half.scad
T

12 lines
230 B
OpenSCAD

include <common.scad>
module left_half_components() {
cube([1,1,1]);
}
module left_half() {
translate(BASE_MODEL_TRANSLATE) scale(BASE_MODEL_SCALE) import(file = "left-half.3mf");
}
left_half();
#left_half_components();