Franky  0.9.1
A High-Level Motion API for Franka
trajectory.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "aggregated_path.hpp"
4 
5 namespace franky {
6 
9  double t;
10 
12  double s, ds, dds, ddds;
13 };
14 
15 template<typename PathType>
16 struct Trajectory {
17  PathType path;
18 
20  std::vector<TrajectoryState> states;
21 };
22 
23 } // namespace franky
Definition: gripper.cpp:3
Definition: trajectory.hpp:16
PathType path
Definition: trajectory.hpp:17
std::vector< TrajectoryState > states
The trajectory state for each consecutive time step (with delta_time difference of the time parametri...
Definition: trajectory.hpp:20
Definition: trajectory.hpp:7
double ddds
Definition: trajectory.hpp:12
double dds
Definition: trajectory.hpp:12
double t
The time i n[s].
Definition: trajectory.hpp:9
double s
The path position (between 0 and the path length) and its derivatives.
Definition: trajectory.hpp:12
double ds
Definition: trajectory.hpp:12