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
in dot.js line 50 and 51
this.p.x -= ((dx / d) * e);
and you written e = this.e * d; before
so the results is this.px -= (dx * this.e);
I don't know why did you do it in this way
The text was updated successfully, but these errors were encountered:
in dot.js line 50 and 51
this.p.x -= ((dx / d) * e);
and you written e = this.e * d; before
so the results is this.px -= (dx * this.e);
I don't know why did you do it in this way
The text was updated successfully, but these errors were encountered: