Files
paparazzi/sw/include/pprz_algebra_f.h
T
2009-01-29 15:31:57 +00:00

22 lines
242 B
C

#ifndef PPRZ_ALGEBRA_F_H
#define PPRZ_ALGEBRA_F_H
struct Pprz_double_utm {
double east;
double north;
double alt;
int zone;
};
struct Pprz_double_lla {
double lat;
double lon;
double alt;
};
#endif /* PPRZ_ALGEBRA_F_H */