void Set(const T * pVals, int count); void Set(const T pVals[3][4]); void Set(const Matrix3x4 & 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 Matrix3x4 & mat |
A passed matrix. |