From 16f618a727814b0e603e4cd527514dc6375ee8aa Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 12 Oct 2021 13:52:58 -0400 Subject: [PATCH] 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. --- scad/libraries/gnal_v3.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scad/libraries/gnal_v3.scad b/scad/libraries/gnal_v3.scad index 1908b07..f12c096 100644 --- a/scad/libraries/gnal_v3.scad +++ b/scad/libraries/gnal_v3.scad @@ -123,7 +123,7 @@ module gnal_spiral_core () { } } 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 @@ -185,11 +185,11 @@ module gnal_spiral_core () { 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); 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 () { rotate([0, 45, 0]) cube([3, INSERT_D + 2, 3], center = true); cylinder(r = (INSERT_D + 1) / 2, h = 6, center = true);