Matrix4x4::Set

Matrix4x4::Set
void Set(const T * pVals, int count);
void Set(const T pVals[4][4]);
void Set(const Matrix4x4 & mat);
Description

Set creates a new matrix from the passed array of values.

Parameters
Parameters 
Description 
const T * pVals 
Array of values used as matrix elements. 
int count 
Number of matrix elements. 
const Matrix4x4 & mat 
Passed matrix.