Skip to main content
added 4 characters in body
Source Link
user29244
  • 327
  • 2
  • 12

I had to shift this

l = lerpAngle(mindeg, maxdeg, t) createDirection

createDirection(l)

into

l = lerpAngle(min, max, t) createDirection

createDirection(l*deg)

I had to shift this

l = lerpAngle(mindeg, maxdeg, t) createDirection(l)

into

l = lerpAngle(min, max, t) createDirection(l*deg)

I had to shift this

l = lerpAngle(mindeg, maxdeg, t)

createDirection(l)

into

l = lerpAngle(min, max, t)

createDirection(l*deg)

Source Link
user29244
  • 327
  • 2
  • 12

I had to shift this

l = lerpAngle(mindeg, maxdeg, t) createDirection(l)

into

l = lerpAngle(min, max, t) createDirection(l*deg)