Representation of an edge in PlannerData for planning with controls. This structure encodes a specific control and a duration to apply the control. More...
#include <PlannerData.h>

Public Member Functions | |
| PlannerDataEdgeControl (const Control *c, double duration) | |
| Constructor. Accepts a control pointer and a duration. | |
| PlannerDataEdgeControl (const PlannerDataEdgeControl &rhs) | |
| Copy constructor. | |
| virtual base::PlannerDataEdge * | clone () const |
| Return a clone of this object, allocated from the heap. | |
| const Control * | getControl (void) const |
| Return the control associated with this edge. | |
| double | getDuration (void) const |
| Return the duration associated with this edge. | |
| virtual bool | operator== (const PlannerDataEdge &rhs) const |
Protected Member Functions | |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Protected Attributes | |
| const Control * | c_ |
| double | duration_ |
Friends | |
| class | boost::serialization::access |
| class | PlannerDataStorage |
| class | PlannerData |
Representation of an edge in PlannerData for planning with controls. This structure encodes a specific control and a duration to apply the control.
#include <boost/serialization/export.hpp> ... BOOST_CLASS_EXPORT(ompl::control::PlannerDataEdgeControl);
Definition at line 60 of file PlannerData.h.