12 namespace trajectory {
23 std::vector<HebiTrajectoryPtr> trajectories_;
28 const size_t number_of_joints_;
33 const size_t number_of_waypoints_;
38 const double start_time_;
43 const double end_time_;
48 Trajectory(std::vector<HebiTrajectoryPtr> trajectories,
size_t number_of_waypoints,
double start_time,
double end_time);
80 static std::shared_ptr<Trajectory> createUnconstrainedQp(
81 const VectorXd& time_vector,
82 const MatrixXd& positions,
83 const MatrixXd* velocities =
nullptr,
84 const MatrixXd* accelerations =
nullptr);
116 double getDuration()
const;
131 bool getState(
double time, VectorXd* position, VectorXd* velocity, VectorXd* acceleration)
const;
double getStartTime() const
Get the time (in seconds) at which the defined trajectory begins.
Definition: trajectory.hpp:105
#define HEBI_DISABLE_COPY_MOVE(Class)
Definition: util.hpp:7
size_t getJointCount() const
The number of independent position trajectories over the same time domain that are managed by this ob...
Definition: trajectory.hpp:95
double getEndTime() const
Get the time (in seconds) at which the defined trajectory ends.
Definition: trajectory.hpp:110
Represents a smooth trajectory through a set of waypoints.
Definition: trajectory.hpp:17
size_t getWaypointCount() const
The number of fixed waypoints that each joint is moving through.
Definition: trajectory.hpp:100