Matrix3x4::Set

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