const double*   sgCMatrix::GetTransparentData()

 

Description:

Returns the pointer to the array of the sixteen numbers of the double type.

 

Arguments:

No arguments.

 

Returned value:

Returns the pointer to the data which are the representatives of a transposed 4x4 matrix. The pointer returns to the temporary buffer, the matrix itself is not transposed.

 

Example:

 

sgCMatrix matr1;

const double* matr_data = matr1.GetTransparentData();

assert(matr_data[0]==1.0);

assert(matr_data[1]==0.0);