00001 #include <blort/TomGine/tgMathlib.h> 00002 00003 std::ostream & operator<<(std::ostream & out, const mat3 & m) 00004 { 00005 out << m.mat[0] << " " << m.mat[1] << " " << m.mat[2] << std::endl; 00006 out << m.mat[3] << " " << m.mat[4] << " " << m.mat[5] << std::endl; 00007 out << m.mat[6] << " " << m.mat[7] << " " << m.mat[8] << std::endl; 00008 }