Skip to content
Snippets Groups Projects
Commit a05364be authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add Graph-Hermite steering method.

parent 566964a8
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@
#include <hpp/core/path-projector/global.hh>
#include <hpp/core/path-projector/recursive-hermite.hh>
#include <hpp/core/roadmap.hh>
#include <hpp/core/steering-method/hermite.hh>
#include <hpp/core/steering-method/straight.hh>
#include <hpp/core/comparison-type.hh>
......@@ -137,6 +138,10 @@ namespace hpp {
using core::SteeringMethodBuilder_t;
parent_t::add <SteeringMethodBuilder_t> ("Graph-SteeringMethodStraight",
GraphSteeringMethod::create <core::SteeringMethodStraight>);
parent_t::add <SteeringMethodBuilder_t> ("Graph-Straight",
GraphSteeringMethod::create <core::steeringMethod::Straight>);
parent_t::add <SteeringMethodBuilder_t> ("Graph-Hermite",
GraphSteeringMethod::create <core::steeringMethod::Hermite>);
parent_t::add <PathOptimizerBuilder_t> ("KeypointsShortcut",
pathOptimization::Keypoints::create);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment