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
c9599ea9
Verified
Commit
c9599ea9
authored
Dec 07, 2019
by
Justin Carpentier
Browse files
math: fix template name
parent
3f3a0caf
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/fcl/math/transform.h
View file @
c9599ea9
...
...
@@ -140,8 +140,9 @@ public:
}
/// @brief set transform from rotation and translation
template
<
typename
Matrixx3Like
,
typename
Vector3Like
>
inline
void
setTransform
(
const
Eigen
::
MatrixBase
<
Matrixx3Like
>&
R_
,
const
Eigen
::
MatrixBase
<
Vector3Like
>&
T_
)
template
<
typename
Matrix3Like
,
typename
Vector3Like
>
inline
void
setTransform
(
const
Eigen
::
MatrixBase
<
Matrix3Like
>&
R_
,
const
Eigen
::
MatrixBase
<
Vector3Like
>&
T_
)
{
R
.
noalias
()
=
R_
;
T
.
noalias
()
=
T_
;
...
...
Write
Preview
Supports
Markdown
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