Name parts in example for output

This commit is contained in:
Matt McWilliams 2023-04-17 14:30:22 -04:00
parent a374ea3909
commit 0f247fc8b6
1 changed files with 10 additions and 6 deletions

View File

@ -208,9 +208,13 @@ module idle_roller_cap () {
}
//translate([0, 0, 40]) color("red") original_takeup();
//jk_takeup();
jk_takeup_halves();
//color("blue") jk_takeup_halves("B");
//m5_nut();
//idle_roller();
//translate([0, 0, (20.2 / 2) - (5 / 2)]) idle_roller_cap();
if (PART == "jk_takeup") {
jk_takeup();
} else if (PART == "jk_takeup_half_a") {
jk_takeup_halves("A");
} else if (PART == "jk_takeup_half_b") {
jk_takeup_halves("B");
} else if (PART == "idle_roller") {
idle_roller();
}