Matrix4x4::MultiplyMatrix

Matrix4x4::MultiplyMatrix
SF_EXPORT void MultiplyMatrix(const Matrix4x4 & m1, const Matrix4x4 & m2);
SF_EXPORT void MultiplyMatrix(const Matrix3x4<T> & m1, const Matrix4x4 & m2);
SF_EXPORT void MultiplyMatrix(const Matrix4x4 & m1, const Matrix3x4<T> & m2);
SF_EXPORT void MultiplyMatrix(const Matrix2x4<T> & m1, const Matrix4x4 & m2);
SF_EXPORT void MultiplyMatrix(const Matrix4x4 & m1, const Matrix2x4<T> & m2);
Description

MultiplyMatrix multiplies a matrix with another matrix object and returns the resultant matrix.

  • Multiplication 3x4 * 4x4
  • Multiplication 4x4 * 3x4
  • Multiplication 2x4 * 4x4
  • Multiplication 4x4 * 2x4