mirror of https://github.com/XEphem/XEphem.git
26 lines
354 B
C
26 lines
354 B
C
#ifndef __SATTYPES_H
|
|
#define __SATTYPES_H
|
|
|
|
/* $Id: sattypes.h,v 1.1 2000/09/25 17:21:25 ecdowney Exp $ */
|
|
|
|
typedef struct _Vec3 {
|
|
double x, y, z;
|
|
} Vec3;
|
|
|
|
|
|
typedef struct _LookAngle {
|
|
double az;
|
|
double el;
|
|
double r;
|
|
} LookAngle;
|
|
|
|
|
|
typedef struct _Geoloc {
|
|
double lt;
|
|
double ln;
|
|
double h;
|
|
} GeoLoc;
|
|
|
|
#endif /* __SATTYPES_H */
|
|
|