![]() |
Hekateros
3.4.3
RoadNarrows Robotics Robot Arm Project
|
Joint trajectory feedback class. More...
#include <hekTraj.h>
Public Member Functions | |
| HekJointTrajectoryFeedback () | |
| Default constructor. | |
| HekJointTrajectoryFeedback (const HekJointTrajectoryFeedback &src) | |
| Copy constructor. | |
| ~HekJointTrajectoryFeedback () | |
| Destructor. | |
| HekJointTrajectoryFeedback | operator= (const HekJointTrajectoryFeedback &rhs) |
| Assignment operator. More... | |
| uint_t | getTimeFromStart () |
| Get time from start of desired trajectory. More... | |
| size_t | getNumPoints () |
| Get the number of joint points in trajectory. More... | |
| HekJointTrajectoryPoint & | 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 | |
| HekJointTrajectoryPoint | m_trajectory [TRAJ_NUMOF] |
Joint trajectory feedback class.
The feedback provides informaation about the last issued desired trajectory and the current trajectory.
|
inline |
Get the number of joint points in trajectory.
Definition at line 376 of file hekTraj.h.
|
inline |
Get time from start of desired trajectory.
Definition at line 366 of file hekTraj.h.
|
inline |
Assignment operator.
| rhs | Right hand side object. |
Definition at line 352 of file hekTraj.h.
|
inline |
Subscript operator to get reference to given trajectory.
| i | Trajectory point Index. |
Definition at line 388 of file hekTraj.h.