From 30edfe9658902835111b82dbb992bdf60b73d7a7 Mon Sep 17 00:00:00 2001 From: John Lambert Date: Wed, 3 Mar 2021 01:54:27 -0500 Subject: [PATCH] move Point3Pairs to Point3.h part of gtsam.i --- gtsam/gtsam.i | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/gtsam/gtsam.i b/gtsam/gtsam.i index 5c7d7f946..92a7b1834 100644 --- a/gtsam/gtsam.i +++ b/gtsam/gtsam.i @@ -448,6 +448,16 @@ class Point3 { void serialize() const; }; +#include +class Point3Pairs +{ + Point3Pairs(); + size_t size() const; + bool empty() const; + gtsam::Point3Pair at(size_t n) const; + void push_back(const gtsam::Point3Pair& point_pair); +}; + #include class Rot2 { // Standard Constructors and Named Constructors @@ -1070,15 +1080,6 @@ class PinholeCamera { #include -class Point3Pairs -{ - Point3Pairs(); - size_t size() const; - bool empty() const; - gtsam::Point3Pair at(size_t n) const; - void push_back(const gtsam::Point3Pair& point_pair); -}; - class Similarity3 { // Standard Constructors Similarity3();