Returns the resulting matrix from the matrix-matrix product.
Only accepts 3x3 matrices.
DEPRECATED. Use matrixMultiply instead.
_matrixA | first 3x3 matrix. ARRAY |
_matrixB | second 3x3 matrix. ARRAY |
_returnMatrix | 3x3 matrix returned after matrix multiplication ARRAY |
// point reflection at origin [0,0,0] for every vector in matrix B [[[-1,0,0],[0,-1,0],[0,0,-1]], [[1,2,3], [3,1,2], [2,3,1]]] call CBA_fnc_matrixProduct3D;
Kex