Use my (lazy) convention for producing multiple parts from a single SCAD file.

This commit is contained in:
mmcwilliams 2024-02-18 16:14:17 +01:00
parent a5d640e5b8
commit 87ce37d890
1 changed files with 7 additions and 3 deletions

View File

@ -84,6 +84,10 @@ module reel_top () {
}
//reel_frame();
rotate([180, 0, 0]) reel_top();
//translate([0, 0, -19.5]) reel_frame();
PART = "reel_top";
if (PART == "reel_frame") {
reel_frame();
} else if (PART == "reel_top") {
rotate([180, 0, 0]) reel_top();
}