Fix missing space in ostream << operator for Transform

This commit is contained in:
Tomas
2016-11-08 19:37:09 +02:00
parent f88eadd312
commit 55ff45064f

View File

@@ -282,7 +282,7 @@ std::ostream& operator<<(std::ostream& os, const Transform& s)
{ {
for(int j = 0; j < 4; ++j) for(int j = 0; j < 4; ++j)
{ {
os << std::left << std::setw(12) << s.data()[i*4 + j]; os << std::left << std::setw(12) << s.data()[i*4 + j] << " ";
} }
os << std::endl; os << std::endl;
} }