From dd84ffcc8ea657e21e59b3f5656a9e82a837550f Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Mon, 22 Apr 2013 17:44:07 +0000 Subject: [PATCH] Fix in Rot3Q constructor --- gtsam/geometry/Rot3Q.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/geometry/Rot3Q.cpp b/gtsam/geometry/Rot3Q.cpp index 23c4dc5f0..4a13bfeee 100644 --- a/gtsam/geometry/Rot3Q.cpp +++ b/gtsam/geometry/Rot3Q.cpp @@ -51,7 +51,7 @@ namespace gtsam { /* ************************************************************************* */ Rot3::Rot3(const Matrix& R) : - quaternion_(R) {} + quaternion_(Matrix3(R)) {} // /* ************************************************************************* */ // Rot3::Rot3(const Matrix3& R) :