Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
3f3a0caf
Verified
Commit
3f3a0caf
authored
Dec 07, 2019
by
Justin Carpentier
Browse files
math: do not use double
parent
62d6e123
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/fcl/math/transform.h
View file @
3f3a0caf
...
...
@@ -242,7 +242,7 @@ public:
template
<
typename
Derived
>
inline
Quaternion3f
fromAxisAngle
(
const
Eigen
::
MatrixBase
<
Derived
>&
axis
,
FCL_REAL
angle
)
{
return
Quaternion3f
(
Eigen
::
AngleAxis
<
double
>
(
angle
,
axis
));
return
Quaternion3f
(
Eigen
::
AngleAxis
<
FCL_REAL
>
(
angle
,
axis
));
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment