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
8fb6ef79
Verified
Commit
8fb6ef79
authored
Oct 15, 2019
by
Justin Carpentier
Browse files
doc/visitor: add doc for JointUnaryVisitorBase and JointBinaryVisitorBase
parent
8c8029aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/multibody/visitor/joint-binary-visitor.hpp
View file @
8fb6ef79
...
...
@@ -18,6 +18,11 @@ namespace pinocchio
typedef
boost
::
blank
NoArg
;
///
/// \brief Base structure for \b Binary visitation of two JointModels.
/// This structure provides runners to call the right visitor according to the number of arguments.
/// This should be used when deriving new rigid body algorithms.
///
template
<
typename
JointVisitorDerived
,
typename
ReturnType
=
void
>
struct
JointBinaryVisitorBase
{
...
...
src/multibody/visitor/joint-unary-visitor.hpp
View file @
8fb6ef79
...
...
@@ -18,6 +18,11 @@ namespace pinocchio
typedef
boost
::
blank
NoArg
;
///
/// \brief Base structure for \b Unary visitation of a JointModel.
/// This structure provides runners to call the right visitor according to the number of arguments.
/// This should be used when deriving new rigid body algorithms.
///
template
<
typename
JointVisitorDerived
,
typename
ReturnType
=
void
>
struct
JointUnaryVisitorBase
{
...
...
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