rename the "spiral_bottom_insert" module to "spiral_insert" because the void is not specifically for the bottom insert anymore and is the same for both "top" and "bottom" spirals in the unified design.

This commit is contained in:
Matt McWilliams 2021-10-12 13:52:58 -04:00
parent d915f255dc
commit 16f618a727
1 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ module gnal_spiral_core () {
} }
} }
cylinder(r = void_d / 2, h = 30, center = true); cylinder(r = void_d / 2, h = 30, center = true);
translate([0, 0, -7.2]) spiral_bottom_insert_void(); translate([0, 0, -7.2]) spiral_insert_void();
} }
//arms //arms
@ -185,11 +185,11 @@ module gnal_spiral_core () {
cylinder(r = core_void_outer_d / 2, h = core_void_h, center = true); cylinder(r = core_void_outer_d / 2, h = core_void_h, center = true);
rotate([0, 0, -120]) translate([20, 0, -1.5]) rotate([0, 0, 45]) cube([20, 20, 3.01], center = true); rotate([0, 0, -120]) translate([20, 0, -1.5]) rotate([0, 0, 45]) cube([20, 20, 3.01], center = true);
cylinder(r = void_d / 2, h = 30, center = true); cylinder(r = void_d / 2, h = 30, center = true);
translate([0, 0, -7.2]) spiral_bottom_insert_void(); translate([0, 0, -7.2]) spiral_insert_void();
} }
} }
module spiral_bottom_insert_void () { module spiral_insert_void () {
intersection () { intersection () {
rotate([0, 45, 0]) cube([3, INSERT_D + 2, 3], center = true); rotate([0, 45, 0]) cube([3, INSERT_D + 2, 3], center = true);
cylinder(r = (INSERT_D + 1) / 2, h = 6, center = true); cylinder(r = (INSERT_D + 1) / 2, h = 6, center = true);