Skip to content
Snippets Groups Projects
Commit ca9e61fc authored by dune's avatar dune
Browse files

[wip/visp] Fix previous patch.

Previous patch was broken, fix it.
parent 918c1823
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,4 @@ Size (visp-2.4.4-svn-20100810.tar.gz) = 1188625 bytes
SHA1 (patch-a) = 0008fac5bc45106a88f9dadd1a579fe2150c035e
SHA1 (patch-b) = ebc1d4deed6784603e886dcb95971cac5968bbaa
SHA1 (patch-d) = 43433d7e4b52929a57454284fe3002c973cf8d9a
SHA1 (patch-e) = d575b57b550cf8939b8b5244390ddec5a6fc2c3c
SHA1 (patch-e) = 507ea43888eeaba7ceddfd068240d2b85ba6c2c9
--- src/tracking/mbt/vpMbtTracker.h~ 2010-08-13 18:46:21.000000000 +0900
+++ src/tracking/mbt/vpMbtTracker.h 2010-08-13 18:46:46.000000000 +0900
@@ -128,6 +128,8 @@
--- src/tracking/mbt/vpMbtTracker.h~ 2010-08-13 19:27:24.000000000 +0900
+++ src/tracking/mbt/vpMbtTracker.h 2010-08-13 19:27:14.000000000 +0900
@@ -127,7 +127,7 @@
\param cMo : the vpHomogeneousMatrix used to store the pose.
*/
inline void getPose(vpHomogeneousMatrix &cMo) const {cMo = this->cMo;}
+ inline void setPose(const vpHomogeneousMatrix& cMo) const {this->cMo=cMo;}
+
-
+ inline void setPose(const vpHomogeneousMatrix &cMo) {this->cMo = cMo;}
/*!
Get the camera paramters.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment