(split from Astrognome)Added mirror point axes

This commit is contained in:
2013-09-03 12:01:08 +02:00
parent c901d7de53
commit c2fd555550
3 changed files with 40 additions and 0 deletions

View File

@@ -59,6 +59,14 @@ typedef enum {
GSWE_ASPECT_QUINCUNX
} GsweAspect;
typedef enum {
GSWE_MIRROR_NONE,
GSWE_MIRROR_ARIES,
GSWE_MIRROR_MID_TAURUS,
GSWE_MIRROR_CANCER,
GSWE_MIRROR_MID_LEO
} GsweMirror;
typedef enum {
GSWE_ELEMENT_NONE,
GSWE_ELEMENT_FIRE,
@@ -156,5 +164,12 @@ typedef struct {
gboolean major;
} GsweAspectInfo;
typedef struct {
GsweMirror mirror_id;
GsweSignInfo *start_sign;
gchar *name;
gboolean middle_axis;
} GsweMirrorInfo;
#endif /* __SWE_GLIB_GSWE_PLANETS_H__ */