Add a "spiral test" module to render a slice of the spiral for printer tests
This commit is contained in:
parent
baf98da5f2
commit
d6773d6947
|
@ -236,4 +236,10 @@ if (PART == "spiral") {
|
||||||
gnal_spindle_top();
|
gnal_spindle_top();
|
||||||
} else if (PART == "spindle_bottom") {
|
} else if (PART == "spindle_bottom") {
|
||||||
gnal_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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue