glam v0.10.1 Release Notes

Release Date: 2020-11-15 // over 3 years ago
  • โž• Added

    • โž• Added the Vec2::perp method which returns a Vec2 perpendicular to self.

    ๐Ÿ”„ Changed

    • Vec2 and Vec3 types were changed to use public named fields for .x, .y, and .z instead of accessors.
    • Quat, Vec3A and Vec4 implement Deref and DerefMut for the new XYZ and XYZW structs to emulate public named field access.
    • Mat3 and Mat4 had their axis members made public instead of needing accessors.
    • Mat2 implements Deref and DerefMut for the new XYAxes struct to emulate public named field access.

    โœ‚ Removed

    • โœ‚ Removed deprecated length_reciprocal and sign methods.

    ๐Ÿ›  Fixed

    • โž• Adding glam as a no_std dependency should now work as expected.