Skip to content

Releases: CookieShade/ludomath

Version 1.1.1

06 Jun 01:10
Compare
Choose a tag to compare

Quick fixes, technically breaking. But only technically.

Changes:

  • Remove underflow panics from inv_sqrt - could previously panic on large negative numbers
  • Change slerp to always take the shortest path - also nearly doubled performance as a bonus

Version 1.1

05 Jun 00:23
Compare
Choose a tag to compare

Nothing dramatic, just a few extra functions.

Changes:

  • Added Point::lerp, is_in_rect, and clamp_to_rect, like what already existed on Vector
  • Added Rotation::slerp and nlerp, two ways of interpolating rotations, as well as to_vector
  • Added num::inv_sqrt, a fast software approximation of 1/sqrt(x)
  • Minor documentation tweaks