From d41e04df1aec083a5ffe71b7c873e20df99eecc8 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 26 Jul 2013 17:07:03 +0200 Subject: [PATCH] Added Moon apogee (Lilith) to planet list. --- src/gradix.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gradix.c b/src/gradix.c index 247b382..d4a112f 100644 --- a/src/gradix.c +++ b/src/gradix.c @@ -403,6 +403,9 @@ main(int argc, char *argv[]) printf("North Node: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position); g_free (planetInfo); + planetInfo = get_planet_info(SE_MEAN_APOG, te, cusps); + printf("Dark Moon.: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position); + g_free (planetInfo); return OK; }