Newer
Older
waypoint_navigation / waypoint_saver / include / waypoint_saver.h
@koki koki on 4 Sep 2022 228 bytes update
class Waypoint {
public:
    double x, y, z;
    float vel;
    float rad;
    bool stop;

    Waypoint() : 
        x(0.0),
        y(0.0),
        z(0.0),
        vel(1.0),
        rad(0.8),
        stop(false)
    {
    }

};