Add a "spiral test" module to render a slice of the spiral for printer tests

This commit is contained in:
mmcwilliams 2020-08-24 09:18:27 -04:00
parent baf98da5f2
commit d6773d6947
1 changed files with 6 additions and 0 deletions

View File

@ -236,4 +236,10 @@ if (PART == "spiral") {
gnal_spindle_top();
} else if (PART == "spindle_bottom") {
gnal_spindle_bottom();
} else if (PART == "spiral_test") {
difference () {
gnal_50ft_spiral();
translate([125, 0, 0]) cube([250, 250, 100], center = true);
rotate([0, 0, 30]) translate([-125, 0, 0]) cube([250, 250, 100], center = true);
}
}