mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
Fix missing space in ostream << operator for Transform
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user