author | Michael Krelin <hacker@klever.net> | 2016-01-13 09:50:19 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-01-13 09:50:19 (UTC) |
commit | b1ff07b6fa7c70633ee564cefb3c0325b9da60ab (patch) (unidiff) | |
tree | bb28ce98c0aef591f6dce003b3610cb734af8054 | |
parent | 2dbb3965806819fc380118f30e6642759206579b (diff) | |
download | redelta-b1ff07b6fa7c70633ee564cefb3c0325b9da60ab.zip redelta-b1ff07b6fa7c70633ee564cefb3c0325b9da60ab.tar.gz redelta-b1ff07b6fa7c70633ee564cefb3c0325b9da60ab.tar.bz2 |
log config and calculated cd
-rw-r--r-- | delta.jscad | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/delta.jscad b/delta.jscad index 85cf254..9061c28 100644 --- a/delta.jscad +++ b/delta.jscad | |||
@@ -120,24 +120,25 @@ var CD = { | |||
120 | })(), | 120 | })(), |
121 | duetholder: (function() { | 121 | duetholder: (function() { |
122 | var rv = {}; | 122 | var rv = {}; |
123 | var s = CONFIG.base.sl; | 123 | var s = CONFIG.base.sl; |
124 | var l = CONFIG.duet.hole_spacing.x; | 124 | var l = CONFIG.duet.hole_spacing.x; |
125 | var w = CONFIG.duet.hole_spacing.y; | 125 | var w = CONFIG.duet.hole_spacing.y; |
126 | var h = s*Math.cos(Math.PI/6); | 126 | var h = s*Math.cos(Math.PI/6); |
127 | var h1 = h*(1-l/s); | 127 | var h1 = h*(1-l/s); |
128 | rv.distance = (h1-w)/3; // hole to side | 128 | rv.distance = (h1-w)/3; // hole to side |
129 | return rv; | 129 | return rv; |
130 | })() | 130 | })() |
131 | }; | 131 | }; |
132 | console.log(CONFIG); console.log(CD); | ||
132 | 133 | ||
133 | var U = { | 134 | var U = { |
134 | hypotenuse: function(a,b) { | 135 | hypotenuse: function(a,b) { |
135 | return Math.sqrt(Math.pow(a,2)+Math.pow(b,2)); | 136 | return Math.sqrt(Math.pow(a,2)+Math.pow(b,2)); |
136 | }, | 137 | }, |
137 | peek: function(x,m) { | 138 | peek: function(x,m) { |
138 | console.log(x,m); | 139 | console.log(x,m); |
139 | return x; | 140 | return x; |
140 | } | 141 | } |
141 | }; | 142 | }; |
142 | 143 | ||
143 | /* {h:,w:} */ | 144 | /* {h:,w:} */ |