math docs
    Preparing search index...

    Function multiply3x3RightTransposed

    • Multiplies a mat4 by the transpose of another mat4, treating both as 3x3 rotation matrices. Computes: out = a * transpose(b) (3x3 only) Sets the 4th column to [0,0,0,1].

      Parameters

      • out: mat4.Mat4

        the receiving matrix

      • a: mat4.Mat4

        the first operand

      • b: mat4.Mat4

        the second operand (will be transposed)

      Returns mat4.Mat4

      out