Revert changes to Pose2 r(), t()

release/4.3a0
Dan McGann 2023-04-09 14:18:53 -04:00
parent 7e30cc7c9d
commit 2175f804dd
1 changed files with 2 additions and 2 deletions

View File

@ -252,10 +252,10 @@ public:
inline double theta() const { return r_.theta(); }
/// translation
inline const Point2& t() const { return translation(); }
inline const Point2& t() const { return t_; }
/// rotation
inline const Rot2& r() const { return rotation(); }
inline const Rot2& r() const { return r_; }
/// translation
inline const Point2& translation(OptionalJacobian<2, 3> Hself={}) const {