Skip to content
Snippets Groups Projects
Unverified Commit 4972b13b authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #258 from jcarpent/devel

Additional doc fix
parents 61f61f60 4a2ae2ae
No related branches found
No related tags found
No related merge requests found
Pipeline #15874 passed with warnings
/* /*
* Copyright 2014-2019, CNRS * Copyright 2014-2019, CNRS
* Copyright 2018-2019, INRIA * Copyright 2018-2021, INRIA
*/ */
#ifndef __eigenpy_geometry_conversion_hpp__ #ifndef __eigenpy_geometry_conversion_hpp__
...@@ -27,11 +27,11 @@ namespace eigenpy ...@@ -27,11 +27,11 @@ namespace eigenpy
static void expose() static void expose()
{ {
bp::def("toEulerAngles",&EulerAnglesConvertor::toEulerAngles, bp::def("toEulerAngles",&EulerAnglesConvertor::toEulerAngles,
bp::args("mat (dim 3x3)","a0","a1","a2"), bp::args("rotation_matrix","a0","a1","a2"),
"It returns the Euler-angles of the rotation matrix mat using the convention defined by the triplet (a0,a1,a2)."); "It returns the Euler-angles of the rotation matrix mat using the convention defined by the triplet (a0,a1,a2).");
bp::def("fromEulerAngles",&EulerAnglesConvertor::fromEulerAngles, bp::def("fromEulerAngles",&EulerAnglesConvertor::fromEulerAngles,
bp::args("ea (vector of Euler angles)","a0","a1","a2"), bp::args("euler_angles","a0","a1","a2"),
"It returns the rotation matrix associated to the Euler angles using the convention defined by the triplet (a0,a1,a2)."); "It returns the rotation matrix associated to the Euler angles using the convention defined by the triplet (a0,a1,a2).");
} }
......
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