mirror of https://github.com/XEphem/XEphem.git
29 lines
478 B
C
29 lines
478 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 */
|
|
|
|
/* For RCS Only -- Do Not Edit
|
|
* @(#) $RCSfile: sattypes.h,v $ $Date: 2000/09/25 17:21:25 $ $Revision: 1.1 $ $Name: $
|
|
*/
|