base
Trajectory.hpp
Go to the documentation of this file.
1 #ifndef __TRAJECTORY_HH__
2 #define __TRAJECTORY_HH__
3 
4 #include <base/geometry/Spline.hpp>
5 
6 namespace base
7 {
8 
9 struct Trajectory
10 {
11  Trajectory();
12 
17  double speed;
18 
24  bool driveForward() const;
25 
31 };
32 
33 }
34 
35 #endif
bool driveForward() const
Definition: Trajectory.cpp:10
Definition: Trajectory.hpp:9
base::geometry::Spline< 3 > spline
Definition: Trajectory.hpp:30
Definition: LinearAngular6DCommand.hpp:8
double speed
Definition: Trajectory.hpp:17
Trajectory()
Definition: Trajectory.cpp:5