Simplify v3 scripts by removing vestigial modules.

This commit is contained in:
mmcwilliams 2020-09-12 10:57:01 -04:00
parent 1ce5d947c0
commit e1083bd548
3 changed files with 6 additions and 10 deletions

View File

@ -103,7 +103,7 @@ module gnal_100ft_spiral (spiral_count = 60, od = 298.75, quarter = false) {
translate([0, 0, -.1]) {
rotate([0, 0, -90]) {
film_guide2(spiral_count);
film_guide(spiral_count);
}
}
}
@ -252,11 +252,8 @@ module gnal_100ft_top () {
FN = 200;
$fn = FN;
module film_guide (rotations = 60, id = 45.55, spacing = 2.075, bottom = -7.1) {
spiral(rotations, id, spacing, bottom, $fn);
}
module film_guide2 (rotations = 60, id = 45.55, spacing = 2.075, bottom = -2) {
module film_guide (rotations = 60, id = 45.55, spacing = 2.075, bottom = -2) {
spiral(rotations, id, spacing, bottom, $fn);
}

View File

@ -64,7 +64,7 @@ module gnal_50ft_spiral (spiral_count = 40, od = 215.75, quarter = false) {
translate([0, 0, -.1]) {
rotate([0, 0, -90]) {
film_guide2(spiral_count);
film_guide(spiral_count);
}
}
}
@ -182,11 +182,8 @@ module gnal_50ft_top () {
FN = 200;
$fn = FN;
module film_guide (rotations = 40, id = 45.55 - .5, spacing = 2.075, bottom = -7.1) {
spiral(rotations, id, spacing, bottom, $fn);
}
module film_guide2 (rotations = 40, id = 45.55 - .5, spacing = 2.075, bottom = -2) {
module film_guide (rotations = 40, id = 45.55 - .5, spacing = 2.075, bottom = -2) {
spiral(rotations, id, spacing, bottom, $fn);
}

View File

@ -9,8 +9,10 @@ DIST=./stl
IMG=./img
NOTES=./notes/${V}.csv
#"quarter_a" "quarter_b" "quarter_c" "quarter_d"
#quarter pieces not rendering properly
FILES=( "spindle_bottom" "spindle_top" "spacer" "top" "spiral" "insert_s8" "insert_16" "spacer_16" )
SIZES=( "50ft" "100ft" )