mirror of https://github.com/XEphem/XEphem.git
23 lines
547 B
C
23 lines
547 B
C
#ifndef _MAP_H
|
|
#define _MAP_H
|
|
|
|
/* these two structs are used to form lists of polygon vertices and lists
|
|
* of such lists. they are used to form maps.
|
|
*/
|
|
|
|
typedef struct {
|
|
short lg, lt; /* longitude and latitude, degs (*100 for earth) */
|
|
} MCoord;
|
|
|
|
typedef struct {
|
|
char *rname; /* region name */
|
|
MCoord *mcp; /* list of MCoords */
|
|
int nmcp; /* number of entries in mcp[] */
|
|
} MRegion;
|
|
|
|
/* For RCS Only -- Do Not Edit
|
|
* @(#) $RCSfile: map.h,v $ $Date: 2003/03/17 07:26:21 $ $Revision: 1.2 $ $Name: $
|
|
*/
|
|
|
|
#endif /* _MAP_H */
|