Skip to content

Commit 4972b13

Browse files
authored
Merge pull request #258 from jcarpent/devel
Additional doc fix
2 parents 61f61f6 + 4a2ae2a commit 4972b13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/eigenpy/geometry-conversion.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2014-2019, CNRS
3-
* Copyright 2018-2019, INRIA
3+
* Copyright 2018-2021, INRIA
44
*/
55

66
#ifndef __eigenpy_geometry_conversion_hpp__
@@ -27,11 +27,11 @@ namespace eigenpy
2727
static void expose()
2828
{
2929
bp::def("toEulerAngles",&EulerAnglesConvertor::toEulerAngles,
30-
bp::args("mat (dim 3x3)","a0","a1","a2"),
30+
bp::args("rotation_matrix","a0","a1","a2"),
3131
"It returns the Euler-angles of the rotation matrix mat using the convention defined by the triplet (a0,a1,a2).");
3232

3333
bp::def("fromEulerAngles",&EulerAnglesConvertor::fromEulerAngles,
34-
bp::args("ea (vector of Euler angles)","a0","a1","a2"),
34+
bp::args("euler_angles","a0","a1","a2"),
3535
"It returns the rotation matrix associated to the Euler angles using the convention defined by the triplet (a0,a1,a2).");
3636
}
3737

0 commit comments

Comments
 (0)