From 50f3b93324a6041aad6465159b1cddc86724dca4 Mon Sep 17 00:00:00 2001 From: John Lambert Date: Mon, 30 Aug 2021 18:01:17 -0600 Subject: [PATCH] move align as function, not as class method --- gtsam/geometry/geometry.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam/geometry/geometry.i b/gtsam/geometry/geometry.i index c495c22d9..bf906d67f 100644 --- a/gtsam/geometry/geometry.i +++ b/gtsam/geometry/geometry.i @@ -436,9 +436,9 @@ class Pose2 { // enable pickling in python void pickle() const; - - gtsam::Pose2 align(const gtsam::Point2Pairs& pairs); }; + +gtsam::Pose2 align(const gtsam::Point2Pairs& pairs); #include class Pose3 {