# Functions
FromEuler returns a rotation matrix representing the given angle in euler units.
FromRadians returns a rotation matrix representing the given angle in radians.
FromToRotation returns a rotation matrix for rotating the vector `from` to the vector `to`.
Identity returns the identity matrix [1, 0] [0, 1] Provides a shorthand for Matrix{1, 0}.
Lerp linearly interpolates between two Matrix, a and b, by amount t.
LerpUnclamped linearly interpolates between two Matrix, a and b, by amount t.
LookRotation returns a rotation matrix representing the direction the given vector points to.
# Type aliases
Matrix represents a 2x2 matrix specifically for handling 2D rotations.