@sstorsveen/maths - v2.0.1
    Preparing search index...

    Function mulV

    • b = m * a

      Multiplies the 3x3 matrix m by the 3-element column vector a and stores the result in the 3-element vector b.

      The vector a can be updated directly by invoking mulV(m, a, a)

      Parameters

      • m: Mat3

        the 3x3 matrix multiplication operand

      • a: Vec3

        the 3-element vector multiplication operand

      • b: Vec3

        a 3-element vector in which to store the result

      Returns Vec3

      b as the result of m * a