Skip to content
Snippets Groups Projects
Commit cf2babdb authored by jcarpent's avatar jcarpent
Browse files

[Multibody] Correct frame print operator

parent 48609ddb
No related branches found
No related tags found
No related merge requests found
......@@ -109,8 +109,16 @@ namespace se3
template<typename Scalar, int Options>
inline std::ostream & operator << (std::ostream& os, const FrameTpl<Scalar,Options> & f)
{
os << "Frame name:" << f.name << "paired to (parent joint/ previous frame)" << "(" <<f.parent << "/" << f.previousFrame << ")"<< std::endl;
os << "with relative placement wrt parent joint:\n" << f.placement << std::endl;
os
<< "Frame name: "
<< f.name
<< " paired to (parent joint/ previous frame)"
<< "(" <<f.parent << "/" << f.previousFrame << ")"
<< std::endl
<< "with relative placement wrt parent joint:\n" <<
f.placement
<< std::endl;
return os;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment