|
|
| | StraightLine (const std::string &_vcLabel="", bool _binary=false, bool _saveIntermediates=false) |
| |
| | StraightLine (XMLNode &_node) |
| |
| virtual | ~StraightLine ()=default |
| |
|
| virtual void | Print (std::ostream &_os) const override |
| |
|
| virtual bool | IsConnected (const Cfg &_c1, const Cfg &_c2, Cfg &_col, LPOutput *_lpOutput, double _positionRes, double _orientationRes, bool _checkCollision=true, bool _savePath=false) override |
| |
| virtual bool | IsConnected (const GroupCfgType &_c1, const GroupCfgType &_c2, GroupCfgType &_col, GroupLPOutput *_lpOutput, double _positionRes, double _orientationRes, bool _checkCollision=true, bool _savePath=false, const Formation &_robotIndexes=Formation()) override |
| |
| | LocalPlannerMethod (bool _saveIntermediates=false) |
| |
| | LocalPlannerMethod (XMLNode &_node) |
| |
| virtual | ~LocalPlannerMethod ()=default |
| |
| bool | IsConnected (const Cfg &_start, const Cfg &_end, LPOutput *_lpOutput, double _posRes, double _oriRes, bool _checkCollision=true, bool _savePath=false) |
| |
| bool | IsConnected (const GroupCfgType &_start, const GroupCfgType &_end, GroupLPOutput *_lpOutput, double _posRes, double _oriRes, bool _checkCollision=true, bool _savePath=false, const Formation &_formation=Formation()) |
| |
| std::vector< Cfg > | BlindPath (const std::vector< Cfg > &_waypoints, const double _posRes, const double _oriRes) |
| |
| std::vector< Cfg > | BlindPath (const std::vector< Cfg > &_waypoints) |
| |
| std::vector< GroupCfgType > | BlindPath (const std::vector< GroupCfgType > &_waypoints, const double _posRes, const double _oriRes, const Formation &_formation=Formation()) |
| |
| std::vector< GroupCfgType > | BlindPath (const std::vector< GroupCfgType > &_waypoints, const Formation &_formation=Formation()) |
| |
| | MPBaseObject (const std::string &_label="", const std::string &_name="", bool _debug=false) |
| |
| | MPBaseObject (XMLNode &_node) |
| |
| virtual | ~MPBaseObject () |
| |
| virtual void | Initialize () |
| |
| const std::string & | GetName () const |
| | Get the class name for this object. More...
|
| |
| const std::string & | GetLabel () const |
| | Get the unique label for this object. More...
|
| |
| std::string | GetNameAndLabel () const |
| | Get the unique string identifier for this object "m_name::m_label". More...
|
| |
| void | SetLabel (const std::string &) |
| | Set the unique label for this object. More...
|
| |
| void | SetMPLibrary (MPLibrary *) noexcept |
| | Set the owning MPLibrary. More...
|
| |
| MPLibrary * | GetMPLibrary () const noexcept |
| | Get the owning MPLibrary. More...
|
| |
| bool | IsRunning () const noexcept |
| | Check the library's running flag. More...
|
| |
| MPProblem * | GetMPProblem () const noexcept |
| | Get the library's current MPProblem. More...
|
| |
| Environment * | GetEnvironment () const noexcept |
| | Get the current environment. More...
|
| |
| MPTask * | GetTask () const noexcept |
| | Get the current task. More...
|
| |
| GroupTask * | GetGroupTask () const noexcept |
| | Get the current group task. More...
|
| |
| MPSolutionType * | GetMPSolution () const noexcept |
| |
| RoadmapType * | GetRoadmap (Robot *const _r=nullptr) const noexcept |
| | Get the current free-space roadmap. More...
|
| |
| GroupRoadmapType * | GetGroupRoadmap (RobotGroup *const _g=nullptr) const noexcept |
| | Get the current free-space group roadmap. More...
|
| |
| RoadmapType * | GetBlockRoadmap (Robot *const _r=nullptr) const noexcept |
| | Get the current obstacle-space roadmap. More...
|
| |
| Path * | GetPath (Robot *const _r=nullptr) const noexcept |
| |
| GroupPath * | GetGroupPath (RobotGroup *const _g=nullptr) const noexcept |
| | Get the current best group path. More...
|
| |
| StatClass * | GetStatClass () const noexcept |
| | Get the current StatClass. More...
|
| |
| LocalObstacleMap * | GetLocalObstacleMap () const noexcept |
| | Get the local obstacle map. More...
|
| |
|
|
| bool | IsConnectedFunc (const Cfg &_c1, const Cfg &_c2, Cfg &_col, LPOutput *_lpOutput, double _positionRes, double _orientationRes, bool _checkCollision=true, bool _savePath=false) |
| | Default for non closed chains. More...
|
| |
| virtual bool | IsConnectedEqualVelocities (const GroupCfgType &_c1, const GroupCfgType &_c2, GroupCfgType &_col, GroupLPOutput *_lpOutput, double _positionRes, double _orientationRes, bool _checkCollision, bool _savePath, const Formation &_robotIndexes) |
| |
| virtual bool | IsConnectedSLSequential (const Cfg &_c1, const Cfg &_c2, Cfg &_col, LPOutput *_lpOutput, int &_cdCounter, double _positionRes, double _orientationRes, bool _checkCollision=true, bool _savePath=false) |
| |
| virtual bool | IsConnectedSLBinary (const Cfg &_c1, const Cfg &_c2, Cfg &_col, LPOutput *_lpOutput, int &_cdCounter, double _positionRes, double _orientationRes, bool _checkCollision=true, bool _savePath=false) |
| |
| void | SetName (const std::string &_s) |
| |
| const std::string & | GetBaseFilename () const |
| |
Check a straight-line path in c-space for valididty.
This local planner validates straight line paths which is a direct linear interpolation between two configurations in @cspace.