Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
2966a68a
Commit
2966a68a
authored
5 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Fixed deg2rad and rad2deg
parent
d042076b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
VirtualRobot/math/Helpers.h
+14
-10
14 additions, 10 deletions
VirtualRobot/math/Helpers.h
with
14 additions
and
10 deletions
VirtualRobot/math/Helpers.h
+
14
−
10
View file @
2966a68a
...
...
@@ -174,13 +174,15 @@ namespace math
/// Convert a value from degree to radian.
static
float
deg2rad
(
float
deg
);
/// Convert a value from radian to degree.
template
<
typename
ValueT
>
static
ValueT
rad2deg
(
const
ValueT
&
rad
);
/// Convert an Eigen Matrix or Vector from radian to degree.
template
<
typename
Derived
>
static
Eigen
::
Matrix
<
typename
Derived
::
Scalar
,
Derived
::
RowsAtCompileTime
,
Derived
::
ColsAtCompileTime
>
rad2deg
(
const
Eigen
::
MatrixBase
<
Derived
>&
rad
);
/// Convert a value from degree to radian.
template
<
typename
ValueT
>
static
ValueT
deg2rad
(
const
ValueT
&
deg
);
/// Convert an Eigen Matrix or Vector from radian to degree.
template
<
typename
Derived
>
static
Eigen
::
Matrix
<
typename
Derived
::
Scalar
,
Derived
::
RowsAtCompileTime
,
Derived
::
ColsAtCompileTime
>
deg2rad
(
const
Eigen
::
MatrixBase
<
Derived
>&
deg
);
private:
...
...
@@ -259,14 +261,16 @@ namespace math
}
template
<
typename
ValueT
>
ValueT
Helpers
::
rad2deg
(
const
ValueT
&
rad
)
template
<
typename
Derived
>
Eigen
::
Matrix
<
typename
Derived
::
Scalar
,
Derived
::
RowsAtCompileTime
,
Derived
::
ColsAtCompileTime
>
Helpers
::
rad2deg
(
const
Eigen
::
MatrixBase
<
Derived
>&
rad
)
{
return
rad
*
(
180.0
/
M_PI
);
}
template
<
typename
ValueT
>
ValueT
Helpers
::
deg2rad
(
const
ValueT
&
deg
)
template
<
typename
Derived
>
Eigen
::
Matrix
<
typename
Derived
::
Scalar
,
Derived
::
RowsAtCompileTime
,
Derived
::
ColsAtCompileTime
>
Helpers
::
deg2rad
(
const
Eigen
::
MatrixBase
<
Derived
>&
deg
)
{
return
deg
*
(
M_PI
/
180.0
);
}
...
...
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