TimedTrajectory.cpp
Go to the documentation of this file.
1#include "TimedTrajectory.h"
2
3#include <memory.h>
4
6 std::vector<double> userPoints)
7{
8 this->trajectory = trajectory;
9 this->userPoints = userPoints;
10}
11
14{
15 return trajectory;
16}
17
18std::vector<double>
20{
21 return userPoints;
22}
TimedTrajectory(armarx::TrajectoryPtr trajectory, std::vector< double > userPoints)
Creates a TimedTrajectory out of the supplied Trajectory and userpoints.
std::vector< double > getUserPoints() const
Returns the userPoints.
const armarx::TrajectoryPtr getTrajectory() const
Returns the contained Trajectory.
IceInternal::Handle< Trajectory > TrajectoryPtr
Definition Trajectory.h:52