bp::args("inertia"),"Returns the result of the inverse of *this onto an Inertia.")
.def("isApprox",(bool(SE3::*)(constSE3&other,constScalar&prec))&SE3::isApprox,bp::args("other","prec"),"Returns true if *this is approximately equal to other, within the precision given by prec.")
.def("isApprox",(bool(SE3::*)(constSE3&other))&SE3::isApprox,bp::args("other"),"Returns true if *this is approximately equal to other.")
...
...
@@ -105,6 +112,9 @@ namespace se3
.def("__invert__",&SE3::inverse,"Returns the inverse of *this.")
.def(bp::self*bp::self)
.def("__mul__",&__mul__<Motion>)
.def("__mul__",&__mul__<Force>)
.def("__mul__",&__mul__<Inertia>)
.add_property("np",&SE3::toHomogeneousMatrix)
.def("Identity",&SE3::Identity,"Returns the identity transformation.")