Cogl.Matrix.prototype.multiply

function multiply(a: Cogl.Matrix, b: Cogl.Matrix): void {
    // Gjs wrapper for cogl_matrix_multiply()
}
  

Multiplies the two supplied matrices together and stores the resulting matrix inside result.

<note>It is possible to multiply the a matrix in-place, so result can be equal to a but can't be equal to b.</note>

a

A 4x4 transformation matrix

b

A 4x4 transformation matrix