![]() |
Kuon
1.1.3
RoadNarrows Robotics Large Outdoor Mobile Robot Project
|
Wheel trajectory feedback class. More...
#include <kuonTraj.h>
Public Member Functions | |
| KuonWheelTrajectoryFeedback () | |
| Default constructor. | |
| KuonWheelTrajectoryFeedback (const KuonWheelTrajectoryFeedback &src) | |
| Copy constructor. | |
| ~KuonWheelTrajectoryFeedback () | |
| Destructor. | |
| KuonWheelTrajectoryFeedback | operator= (const KuonWheelTrajectoryFeedback &rhs) |
| Assignment operator. More... | |
| uint_t | getTimeFromStart () |
| Get time from start of desired trajectory. More... | |
| size_t | getNumPoints () |
| Get the number of wheel points in trajectory. More... | |
| KuonWheelTrajectoryPoint & | operator[] (const size_t i) |
| Subscript operator to get reference to given trajectory. More... | |
| void | clear () |
| Clear data. | |
Static Public Attributes | |
| static const int | TRAJ_DESIRED = 0 |
| desired trajectory | |
| static const int | TRAJ_ACTUAL = 1 |
| actual trajectory | |
| static const int | TRAJ_NUMOF = 2 |
| number of trajectories | |
Protected Attributes | |
| KuonWheelTrajectoryPoint | m_trajectory [TRAJ_NUMOF] |
Wheel trajectory feedback class.
The feedback provides informaation about the last issued desired trajectory and the current trajectory.
Definition at line 319 of file kuonTraj.h.
|
inline |
Get the number of wheel points in trajectory.
Definition at line 383 of file kuonTraj.h.
|
inline |
Get time from start of desired trajectory.
Definition at line 373 of file kuonTraj.h.
|
inline |
Assignment operator.
| rhs | Right hand side object. |
Definition at line 358 of file kuonTraj.h.
|
inline |
Subscript operator to get reference to given trajectory.
| i | Trajectory point Index. |
Definition at line 395 of file kuonTraj.h.