Skip to content
Snippets Groups Projects
Commit 1870d4f2 authored by jcarpent's avatar jcarpent
Browse files

[Quaternion] Remove depending version methods

parent 363dbf75
No related branches found
No related tags found
No related merge requests found
...@@ -128,9 +128,9 @@ namespace eigenpy ...@@ -128,9 +128,9 @@ namespace eigenpy
.def("__str__",&print) .def("__str__",&print)
.def("__repr__",&print) .def("__repr__",&print)
.def("FromTwoVectors",&Quaternion::template FromTwoVectors<Vector3,Vector3>, // .def("FromTwoVectors",&Quaternion::template FromTwoVectors<Vector3,Vector3>,
bp::args("a","b"), // bp::args("a","b"),
"Returns the quaternion which transform a into b through a rotation.") // "Returns the quaternion which transform a into b through a rotation.")
.staticmethod("FromTwoVectors") .staticmethod("FromTwoVectors")
.def("Identity",&Quaternion::Identity,"Returns a quaternion representing an identity rotation.") .def("Identity",&Quaternion::Identity,"Returns a quaternion representing an identity rotation.")
.staticmethod("Identity") .staticmethod("Identity")
......
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