29 #ifndef HPP_CORE_PATHPROJECTOR_DICHOTOMY_HH
30 #define HPP_CORE_PATHPROJECTOR_DICHOTOMY_HH
38 namespace pathProjector {
47 new Dichotomy(distance, steeringMethod, maxPathLength));
52 return create(problem->distance(), problem->steeringMethod(),
This class projects a path using constraints.
Definition: path-projector.hh:38
hpp::core::PathPtr_t PathPtr_t
Definition: path-projector.hh:41
Definition: straight-path.hh:52
Definition: dichotomy.hh:39
hpp::core::StraightPath StraightPath
Definition: dichotomy.hh:41
static DichotomyPtr_t create(const DistancePtr_t &distance, const SteeringMethodPtr_t &steeringMethod, value_type maxPathLength)
Definition: dichotomy.hh:43
Dichotomy(const DistancePtr_t &distance, const SteeringMethodPtr_t &steeringMethod, value_type maxPathLength)
bool applyToStraightPath(const StraightPathPtr_t &path, PathPtr_t &projection) const
static DichotomyPtr_t create(const ProblemConstPtr_t &problem, value_type maxPathLength)
Definition: dichotomy.hh:50
hpp::core::StraightPathPtr_t StraightPathPtr_t
Definition: dichotomy.hh:42
bool impl_apply(const PathPtr_t &path, PathPtr_t &projection) const
Method to be reimplemented by inherited class.
#define HPP_CORE_DLLAPI
Definition: config.hh:88
shared_ptr< Dichotomy > DichotomyPtr_t
Definition: fwd.hh:330
pinocchio::value_type value_type
Definition: fwd.hh:174
shared_ptr< StraightPath > StraightPathPtr_t
Definition: fwd.hh:200
shared_ptr< Distance > DistancePtr_t
Definition: fwd.hh:141
shared_ptr< SteeringMethod > SteeringMethodPtr_t
Definition: fwd.hh:213
shared_ptr< const Problem > ProblemConstPtr_t
Definition: fwd.hh:197
Definition: bi-rrt-planner.hh:35