00001 #ifndef CAJUN_UNIFORM_PATH_H 00002 #define CAJUN_UNIFORM_PATH_H 00003 00004 #include <vector> 00005 namespace cajun 00006 { 00007 struct waypoint_t 00008 { 00009 double x; 00010 double y; 00011 double min_speed; 00012 double max_speed; 00013 double azimuth; 00014 }; 00015 typedef std::vector<waypoint_t> uniform_path_t; 00016 }; 00017 00018 #endif