|
Eigen::MatrixXd | getDesiredValues (double time) |
|
| Trajectory () |
|
void | setMaxVelocity (double newMaxVel) |
|
void | setMaxVelocity (const Eigen::VectorXd &newMaxVel) |
|
double | getMaxVelocity () |
|
Eigen::VectorXd | getMaxVelocityVector () |
|
void | setMaxAcceleration (double newMaxAcc) |
|
void | setMaxAcceleration (const Eigen::VectorXd &newMaxAcc) |
|
double | getMaxAcceleration () |
|
Eigen::VectorXd | getMaxAccelerationVector () |
|
void | setWaypoints (const std::vector< double > &startingDoubleVec, const std::vector< double > &endingDoubleVec, const int waypointSelector=0, bool endsWithQuaternion=false) |
|
void | setWaypoints (const Eigen::VectorXd &startingVector, const Eigen::VectorXd &endingVector, bool endsWithQuaternion=false) |
|
void | setWaypoints (Eigen::Displacementd &startingDisplacement, Eigen::Displacementd &endingDisplacement, bool endsWithQuaternion=true) |
|
void | setWaypoints (Eigen::Rotation3d &startingOrientation, Eigen::Rotation3d &endingOrientation, bool endsWithQuaternion=true) |
|
void | setWaypoints (const std::list< Eigen::VectorXd > &_waypoints, bool _endsWithQuaternion=false) |
|
void | setWaypoints (Eigen::MatrixXd &waypoints, bool endsWithQuaternion=false) |
|
virtual | ~Trajectory () |
|
void | setDuration () |
|
void | setDuration (const Eigen::VectorXd &_pointToPointDurationVector) |
|
void | setDuration (double time) |
|
bool | isFinished () |
|
virtual void | getDesiredValues (double time, Eigen::MatrixXd &desiredValues, Eigen::VectorXd &variance) |
|
Eigen::MatrixXd | getFullTrajectory (double dt=0.01) |
|
void | getDesiredValues (double time, std::vector< double > &doubleVec) |
|
void | getDesiredValues (double time, Eigen::Displacementd &disp) |
|
void | getDesiredValues (double time, Eigen::Rotation3d &orient) |
|
void | getDesiredValues (double time, Eigen::Displacementd &pos, Eigen::Twistd &vel, Eigen::Twistd &acc) |
|
virtual double | getDuration () |
|
Eigen::Rotation3d | quaternionSlerp (double tau, Eigen::Rotation3d &qStart, Eigen::Rotation3d &qEnd) |
|
Eigen::VectorXd | displacementToEigenVector (Eigen::Displacementd &disp) |
|
Eigen::VectorXd | quaternionToEigenVector (Eigen::Rotation3d &quat) |
|
bool | eigenVectorToStdVector (const Eigen::VectorXd &dispVec, std::vector< double > &doubleVec) |
|
bool | eigenMatrixToStdVector (const Eigen::MatrixXd &dispMat, std::vector< double > &doubleVec) |
|
bool | eigenVectorToDisplacement (const Eigen::VectorXd &dispVec, Eigen::Displacementd &disp) |
|
bool | eigenVectorToQuaternion (const Eigen::VectorXd &quatVec, Eigen::Rotation3d &quat) |
|
bool | eigenVectorToTwist (const Eigen::VectorXd &twistVec, Eigen::Twistd &twist) |
|
virtual void | recalculateTrajectory () |
|