• b = m * a

    Multiplies the 2x2 matrix m by the 2-element column vector a and stores the result in the 2-element vector b

    Parameters

    • m: Mat2

      the 2x2 matrix multiplication operand

    • a: Vec2

      the 2-element vector multiplication operand

    • b: Vec2

      a 2-element vector in which to store the result

    Returns Vec2

    b as the result of m * a

Generated using TypeDoc