use in-built stream support for translation vector rather than duplication of code
parent
0a9cc8ae62
commit
aa18546d7c
|
|
@ -106,7 +106,7 @@ Vector6 Pose3::adjointTranspose(const Vector6& xi, const Vector6& y,
|
||||||
void Pose3::print(const string& s) const {
|
void Pose3::print(const string& s) const {
|
||||||
cout << s;
|
cout << s;
|
||||||
R_.print("R:\n");
|
R_.print("R:\n");
|
||||||
cout << '[' << t_.x() << ", " << t_.y() << ", " << t_.z() << "]\';";
|
cout << t_ << ";" << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue