Comment only
parent
7508aa1fec
commit
5a41f50f8c
|
@ -208,9 +208,10 @@ namespace gtsam {
|
||||||
return Rot3();
|
return Rot3();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** compose two rotations */
|
/// Syntatic sugar for composing two rotations
|
||||||
Rot3 operator*(const Rot3& R2) const;
|
Rot3 operator*(const Rot3& R2) const;
|
||||||
|
|
||||||
|
/// inverse of a rotation, TODO should be different for M/Q
|
||||||
Rot3 inverse() const {
|
Rot3 inverse() const {
|
||||||
return Rot3(Matrix3(transpose()));
|
return Rot3(Matrix3(transpose()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue