mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 08:36:33 +00:00
Changed directory structure and renamed applications
- autopilot -> drone_controller - rtsp_ai_player -> ai_controller - added top level qmake project file - updated documentation - moved small demo applications from tmp/ to misc/
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <ostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
const double INVALID_LATITUDE = -100000;
|
||||
const double INVALID_LONGITUDE = -100000;
|
||||
|
||||
class AzCoordinate
|
||||
{
|
||||
public:
|
||||
double latitude;
|
||||
double longitude;
|
||||
|
||||
AzCoordinate(double lat, double lon);
|
||||
|
||||
friend ostream &operator<<(ostream &os, const AzCoordinate &obj);
|
||||
};
|
||||
Reference in New Issue
Block a user