Vector and Matrix should always be listed in gtsam.h without const &, to trigger the correct unwrap code
parent
1af9cae2e8
commit
301ec3d2f4
2
gtsam.h
2
gtsam.h
|
@ -33,7 +33,7 @@ class Pose2 {
|
||||||
double y() const;
|
double y() const;
|
||||||
double theta() const;
|
double theta() const;
|
||||||
size_t dim() const;
|
size_t dim() const;
|
||||||
Pose2 expmap(const Vector& v) const;
|
Pose2 expmap(Vector v) const;
|
||||||
Vector logmap(const Pose2& pose) const;
|
Vector logmap(const Pose2& pose) const;
|
||||||
Point2 t() const;
|
Point2 t() const;
|
||||||
Rot2 r() const;
|
Rot2 r() const;
|
||||||
|
|
Loading…
Reference in New Issue