fix wrapper

release/4.3a0
Varun Agrawal 2022-02-06 00:09:16 -05:00
parent a57465ee64
commit 5e7598606a
1 changed files with 6 additions and 6 deletions

View File

@ -907,9 +907,9 @@ class Similarity2 {
static gtsam::Similarity2 Align(const gtsam::Pose2Pairs& abPosePairs);
// Standard Interface
const Matrix matrix() const;
const gtsam::Rot2& rotation();
const gtsam::Point2& translation();
Matrix matrix() const;
gtsam::Rot2& rotation();
gtsam::Point2& translation();
double scale() const;
};
@ -929,9 +929,9 @@ class Similarity3 {
static gtsam::Similarity3 Align(const gtsam::Pose3Pairs& abPosePairs);
// Standard Interface
const Matrix matrix() const;
const gtsam::Rot3& rotation();
const gtsam::Point3& translation();
Matrix matrix() const;
gtsam::Rot3& rotation();
gtsam::Point3& translation();
double scale() const;
};