void Set(const T * pVals, int count); void Set(const T pVals[4][4]); void Set(const Matrix4x4 & mat);
Set creates a new matrix from the passed array of values.
Parameters |
Description |
const T * pVals |
Array of values used as matrix elements. |
int count |
Number of matrix elements. |
const Matrix4x4 & mat |
Passed matrix. |