You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
astronomy/moshier/deflection.js:1:$ns.deflectioon = {}; astronomy/moshier/deflection.js:3:$ns.deflectioon.calc = function (p, q, e, result) { astronomy/moshier/planet.js:102: body.position.deflection = $moshier.deflectioon.calc ( p, q, e ); // relativity astronomy/moshier/star.js:108: body.position.deflectioon = $moshier.deflectioon.calc ( p, p, e ); // relativity
I guess deflectioon should read deflection.
Worse might be line 108 in star.js: ( p, p, e ); if that should read ( p, q, e ); instead, as in line 102 of planet.js
Hope this helps improving the code.
The text was updated successfully, but these errors were encountered:
@mivion
Hi,
I found the following lines:
astronomy/moshier/deflection.js:1:$ns.deflectioon = {}; astronomy/moshier/deflection.js:3:$ns.deflectioon.calc = function (p, q, e, result) { astronomy/moshier/planet.js:102: body.position.deflection = $moshier.deflectioon.calc ( p, q, e ); // relativity astronomy/moshier/star.js:108: body.position.deflectioon = $moshier.deflectioon.calc ( p, p, e ); // relativity
I guess deflectioon should read deflection.
Worse might be line 108 in star.js:
( p, p, e );
if that should read( p, q, e );
instead, as in line 102 of planet.jsHope this helps improving the code.
The text was updated successfully, but these errors were encountered: