Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
4972b13b
Unverified
Commit
4972b13b
authored
3 years ago
by
Justin Carpentier
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
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
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eigenpy/geometry-conversion.hpp
+3
-3
3 additions, 3 deletions
include/eigenpy/geometry-conversion.hpp
with
3 additions
and
3 deletions
include/eigenpy/geometry-conversion.hpp
+
3
−
3
View file @
4972b13b
/*
/*
* Copyright 2014-2019, CNRS
* Copyright 2014-2019, CNRS
* Copyright 2018-201
9
, INRIA
* Copyright 2018-20
2
1, 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
(
"e
a (vector of E
uler
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)."
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment