Added aspect data as comments

This commit is contained in:
Gergely Polonkai 2013-08-21 17:07:19 +02:00
parent 6fbfe2dde6
commit be2f131a75
1 changed files with 7 additions and 1 deletions

View File

@ -68,8 +68,14 @@ typedef struct {
gboolean major;
} aspectData_t;
/*
* conjuction - 0, 8
* sextile - 60, 4
* square - 90, 8
* trine - 120, 4
* opposition - 180, 8
*/
const aspectData_t aspectData[] = {
{ "Trigon", 60, 6.0, TRUE, TRUE },
{ NULL, 0, 0.0, FALSE, FALSE }
};