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
Stack Of Tasks
pinocchio
Commits
3716c12a
Verified
Commit
3716c12a
authored
Apr 25, 2020
by
Justin Carpentier
Browse files
liegroups: fix method signatures
parent
16cacc36
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/multibody/liegroup/liegroup-base.hpp
View file @
3716c12a
...
...
@@ -92,7 +92,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
*
* @param[out] J the Jacobian of the Integrate operation w.r.t. the argument arg.
*/
template
<
ArgumentPosition
arg
,
AssignmentOperatorType
op
=
SETTO
,
class
Config_t
,
class
Tangent_t
,
class
JacobianOut_t
>
template
<
ArgumentPosition
arg
,
class
Config_t
,
class
Tangent_t
,
class
JacobianOut_t
,
AssignmentOperatorType
op
=
SETTO
>
void
dIntegrate
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
)
const
...
...
@@ -118,7 +118,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
ArgumentPosition
arg
,
const
AssignmentOperatorType
op
)
const
;
const
AssignmentOperatorType
op
=
SETTO
)
const
;
/**
* @brief Computes the Jacobian of a small variation of the configuration vector into tangent space at identity.
...
...
@@ -135,7 +135,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
void
dIntegrate_dq
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
=
SETTO
)
const
;
const
AssignmentOperatorType
op
=
SETTO
)
const
;
/**
* @brief Computes the Jacobian of a small variation of the tangent vector into tangent space at identity.
...
...
@@ -152,7 +152,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
void
dIntegrate_dv
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
=
SETTO
)
const
;
const
AssignmentOperatorType
op
=
SETTO
)
const
;
/**
...
...
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