Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &s, const mat &m) |
|
||||||||||||
|
Definition at line 67 of file mat-io.hpp. 00068 {
00069 s << "[ " << m.xx << ", " << m.xy << ", " << m.xz
00070 << "; " << m.yx << ", " << m.yy << ", " << m.yz
00071 << "; " << m.zx << ", " << m.zy << ", " << m.zz
00072 << " ]";
00073 return s;
00074 }
|
1.4.1