@@ -58,10 +58,10 @@ namespace eigenpy
5858 ((bp::arg (" self" ),bp::arg (" angle" ),bp::arg (" axis" )),
5959 " Initialize from angle and axis." ))
6060 .def (bp::init<Matrix3>
61- ((bp::arg (" self" ),bp::arg (" rotationMatrix " )),
61+ ((bp::arg (" self" ),bp::arg (" rotation matrix " )),
6262 " Initialize from a rotation matrix" ))
63- .def (bp::init<Quaternion>(bp::arg (" self" ),bp::arg (" quaternion" )," Initialize from a quaternion." ))
64- .def (bp::init<AngleAxis>(bp::arg (" self" ),bp::arg (" copy" )," Copy constructor." ))
63+ .def (bp::init<Quaternion>(( bp::arg (" self" ),bp::arg (" quaternion" ) )," Initialize from a quaternion." ))
64+ .def (bp::init<AngleAxis>(( bp::arg (" self" ),bp::arg (" copy" ) )," Copy constructor." ))
6565
6666 /* --- Properties --- */
6767 .add_property (" axis" ,
@@ -77,11 +77,11 @@ namespace eigenpy
7777 bp::arg (" self" ),
7878 " Return the inverse rotation." )
7979 .def (" fromRotationMatrix" ,&AngleAxis::template fromRotationMatrix<Matrix3>,
80- (bp::arg (" self" ),bp::arg (" rot " )),
80+ (bp::arg (" self" ),bp::arg (" rotation matrix " )),
8181 " Sets *this from a 3x3 rotation matrix" ,
8282 bp::return_self<>())
8383 .def (" toRotationMatrix" ,
84- bp::arg (" self" ),
84+ // bp::arg("self"),
8585 &AngleAxis::toRotationMatrix,
8686 " Constructs and returns an equivalent 3x3 rotation matrix." )
8787 .def (" matrix" ,&AngleAxis::matrix,
0 commit comments