#include "ExCMatrix4x4.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const ExCMatrix4x4 &m) |
|
Definition at line 277 of file ExCMatrix4x4.cpp. References Guard, and ExCMatrix4x4::m_Matrix.
00278 { 00279 Guard(friend std::ostream& operator<<(std::ostream& s,const ExCMatrix4x4 &m)) 00280 s<<std::endl<<"|["<<m.m_Matrix[0]<<"]"<<"["<<m.m_Matrix[4]<<"]"<<"["<<m.m_Matrix[8]<<"]"<<"["<<m.m_Matrix[12]<<"]|"<<std::endl; 00281 s<<"|["<<m.m_Matrix[1]<<"]"<<"["<<m.m_Matrix[5]<<"]"<<"["<<m.m_Matrix[9]<<"]"<<"["<<m.m_Matrix[13]<<"]|"<<std::endl; 00282 s<<"|["<<m.m_Matrix[2]<<"]"<<"["<<m.m_Matrix[6]<<"]"<<"["<<m.m_Matrix[10]<<"]"<<"["<<m.m_Matrix[14]<<"]|"<<std::endl; 00283 s<<"|["<<m.m_Matrix[3]<<"]"<<"["<<m.m_Matrix[7]<<"]"<<"["<<m.m_Matrix[11]<<"]"<<"["<<m.m_Matrix[15]<<"]|"; 00284 return s; 00285 UnGuard 00286 } |