Add comment to find_aspect()

This commit is contained in:
Gergely Polonkai 2014-03-16 09:46:09 +01:00
parent ddf4732dc9
commit b689d3153d
1 changed files with 9 additions and 0 deletions

View File

@ -58,6 +58,15 @@ gswe_aspect_data_free(GsweAspectData *aspect_data)
g_free(aspect_data);
}
/*
* find_aspect:
* @aspect_p: a pointer made with GINT_TO_POINTER(), holding the aspect ID
* @aspect_info: a GsweAspectInfo, which will be checked against @aspect_data
* @aspect_data: a GsweAspectData, whose planets' positions will be checked against @aspect_info
*
* This function is called internally by gswe_aspect_data_calculate() to check
* if the two planets in @aspect_data are in aspect according to @aspect_info
*/
static gboolean
find_aspect(gpointer aspect_p, GsweAspectInfo *aspect_info, GsweAspectData *aspect_data)
{