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
Using an crank with a negative rotation would prevent this method to work. freq = round(tau / j.angle) should be replaced by freq = round(tau / abs(j.angle)).
For now users can defined and angle above pi to solve this issue (instead of using an angle of -0.1, use 2*pi-0.1).
The text was updated successfully, but these errors were encountered:
Using an crank with a negative rotation would prevent this method to work.
freq = round(tau / j.angle)
should be replaced byfreq = round(tau / abs(j.angle))
.For now users can defined and angle above pi to solve this issue (instead of using an angle of -0.1, use 2*pi-0.1).
The text was updated successfully, but these errors were encountered: