Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-manipulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
hpp-manipulation
Commits
9a939cbb
Commit
9a939cbb
authored
10 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add getter and setter in GraphPathValidation
parent
212324fc
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/hpp/manipulation/graph-path-validation.hh
+24
-0
24 additions, 0 deletions
include/hpp/manipulation/graph-path-validation.hh
with
24 additions
and
0 deletions
include/hpp/manipulation/graph-path-validation.hh
+
24
−
0
View file @
9a939cbb
...
@@ -49,6 +49,30 @@ namespace hpp {
...
@@ -49,6 +49,30 @@ namespace hpp {
/// the encapsulated PathValidation::validate.
/// the encapsulated PathValidation::validate.
bool
validate
(
const
PathPtr_t
&
path
,
bool
reverse
,
PathPtr_t
&
validPart
);
bool
validate
(
const
PathPtr_t
&
path
,
bool
reverse
,
PathPtr_t
&
validPart
);
/// Set the encapsulated path validator.
void
innerValidation
(
const
PathValidationPtr_t
&
pathValidation
)
{
pathValidation_
=
pathValidation
;
}
/// Get the encapsulated path validator.
const
PathValidationPtr_t
&
innerValidation
()
{
return
pathValidation_
;
}
/// Set the graph of constraints
void
constraintGraph
(
const
graph
::
GraphPtr_t
&
graph
)
{
constraintGraph_
=
graph
;
}
/// Get the graph of constraints
graph
::
GraphPtr_t
constraintGraph
()
const
{
return
constraintGraph_
;
}
/// Create a new instance of this class.
/// Create a new instance of this class.
/// \param pathValidation a PathValidation that is responsible for collision
/// \param pathValidation a PathValidation that is responsible for collision
// checking.
// checking.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment