Calculates the adjugate of a Matrix2
the receiving matrix
dest
Returns the Frobenius norm of a Matrix2
Frobenius norm
Rotates a Matrix2 by the given angle
the angle to rotate the matrix by
Scales a Matrix2 by the dimensions in the given Vector2
the Vector2 to scale the matrix by
Creates a Matrix2 from a given angle This is equivalent to (but much faster than): m = Matrix2.identity; m.rotate(radians, m);
Creates a matrix from a vector scaling This is equivalent to (but much faster than): m = Matrix2.identity; m.scale(v, m);
the scaling vector
Generated using TypeDoc
Calculates the adjugate of a Matrix2