Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gabriele Buondonno
pinocchio
Commits
a261b5b8
Commit
a261b5b8
authored
Sep 26, 2017
by
jcarpent
Browse files
[LieGroup] Fix some bugs
parent
2313552c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/multibody/liegroup/operation-base.hpp
View file @
a261b5b8
...
...
@@ -28,8 +28,9 @@ namespace se3
#ifdef __clang__
#define SE3_LIE_GROUP_TYPEDEF_ARG(prefix) \
typedef prefix traits<LieGroupDerived>::Scalar Scalar; \
enum { \
typedef int Index; \
typedef prefix traits<LieGroupDerived>::Scalar Scalar; \
enum { \
NQ = traits<LieGroupDerived>::NQ, \
NV = traits<LieGroupDerived>::NV \
}; \
...
...
src/multibody/liegroup/special-euclidean.hpp
View file @
a261b5b8
...
...
@@ -162,7 +162,7 @@ namespace se3
template
<
class
Config_t
>
void
random_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>&
qout
)
const
{
R2crossSO2_t
::
random
(
qout
);
R2crossSO2_t
().
random
(
qout
);
}
template
<
class
ConfigL_t
,
class
ConfigR_t
,
class
ConfigOut_t
>
...
...
@@ -274,7 +274,7 @@ namespace se3
template
<
class
Config_t
>
void
random_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>&
qout
)
const
{
R3crossSO3_t
::
random
(
qout
);
R3crossSO3_t
().
random
(
qout
);
}
template
<
class
ConfigL_t
,
class
ConfigR_t
,
class
ConfigOut_t
>
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment