author | Michael Krelin <hacker@klever.net> | 2018-07-26 06:14:07 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-26 06:14:07 (UTC) |
commit | 76d002b6afe1b4e24f4cb67c08252ab632f020fc (patch) (unidiff) | |
tree | 9b5491bf5cc11120fdd8f425de8c40ee9a3cff64 | |
parent | 66ee4d791039758827518a354b2d964348c863b6 (diff) | |
download | extrudery-76d002b6afe1b4e24f4cb67c08252ab632f020fc.zip extrudery-76d002b6afe1b4e24f4cb67c08252ab632f020fc.tar.gz extrudery-76d002b6afe1b4e24f4cb67c08252ab632f020fc.tar.bz2 |
remove unused variable
I don't remember what did I want it for
-rw-r--r-- | multimixer.scad | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/multimixer.scad b/multimixer.scad index c7b3489..38a0a38 100644 --- a/multimixer.scad +++ b/multimixer.scad | |||
@@ -14,25 +14,24 @@ module multimixer( | |||
14 | pf = pushfit_embeddest, | 14 | pf = pushfit_embeddest, |
15 | debug = 0, // how many inputs -1 the debug cutout spans | 15 | debug = 0, // how many inputs -1 the debug cutout spans |
16 | print = false, | 16 | print = false, |
17 | 17 | ||
18 | liner_d_tolerance=.2 | 18 | liner_d_tolerance=.2 |
19 | ) { | 19 | ) { |
20 | fnd = 4*PI; fnr = 2*fnd; | 20 | fnd = 4*PI; fnr = 2*fnd; |
21 | 21 | ||
22 | pushfit_d = pf_d(pf); | 22 | pushfit_d = pf_d(pf); |
23 | pushfit_h = pf_h(pf); | 23 | pushfit_h = pf_h(pf); |
24 | 24 | ||
25 | angular_step = 360/inputs; | 25 | angular_step = 360/inputs; |
26 | inputogon_angle = 180*(inputs-2)/inputs; | ||
27 | lod = liner_od+liner_d_tolerance; // effective liner diameter | 26 | lod = liner_od+liner_d_tolerance; // effective liner diameter |
28 | 27 | ||
29 | sinsin = sin(angle)*sin(angular_step/2); | 28 | sinsin = sin(angle)*sin(angular_step/2); |
30 | function l_to(d) = d*cos(asin(sinsin))/sinsin; | 29 | function l_to(d) = d*cos(asin(sinsin))/sinsin; |
31 | l_output = lod; | 30 | l_output = lod; |
32 | l_input = l_to(pushfit_d/2+minshell); | 31 | l_input = l_to(pushfit_d/2+minshell); |
33 | l_fork = l_to(liner_id/2); | 32 | l_fork = l_to(liner_id/2); |
34 | l_narrow = l_to(lod/2+minshell); | 33 | l_narrow = l_to(lod/2+minshell); |
35 | 34 | ||
36 | module forinputs() { | 35 | module forinputs() { |
37 | for(zr=[0:angular_step:359]) rotate([0,0,zr]) rotate([0,angle,0]) children(); | 36 | for(zr=[0:angular_step:359]) rotate([0,0,zr]) rotate([0,angle,0]) children(); |
38 | }//forinputs module | 37 | }//forinputs module |