Gergely Polonkai (W00d5t0ck)
dbee248a6e
This is to satisfy #7, but it also satisfies #8, as gswe_init() is called where data initialized there is necessary.
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
/* gswe-aspect-data-private.h: Private parts of GsweAspectData
|
|
*
|
|
* Copyright © 2013 Gergely Polonkai
|
|
*
|
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* SWE-GLib is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifdef __SWE_GLIB_BUILDING__
|
|
#ifndef __SWE_GLIB_GSWE_ASPECT_DATA_PRIVATE_H__
|
|
#define __SWE_GLIB_GSWE_ASPECT_DATA_PRIVATE_H__
|
|
|
|
#include "gswe-aspect-data.h"
|
|
#include "gswe-planet-data.h"
|
|
|
|
struct _GsweAspectData {
|
|
/* the first planet in the aspect */
|
|
GswePlanetData *planet1;
|
|
|
|
/* the second planet in the aspect */
|
|
GswePlanetData *planet2;
|
|
|
|
/* the distance between the two planets, in degrees */
|
|
gdouble distance;
|
|
|
|
/* the #GsweAspectInfo structure associated with the aspect */
|
|
GsweAspectInfo *aspect_info;
|
|
|
|
/* the difference in percent between an exact aspect and this given aspect */
|
|
gdouble difference;
|
|
|
|
/* reference count */
|
|
guint refcount;
|
|
};
|
|
|
|
void gswe_aspect_data_calculate(GsweAspectData *aspect_data);
|
|
|
|
#endif /* __SWE_GLIB_GSWE_ASPECT_DATA_PRIVATE_H__ */
|
|
#else /* not defined __SWE_GLIB_BUILDING__ */
|
|
#error __FILE__ "Can not be included, unless building SWE-GLib"
|
|
#endif /* __SWE_GLIB_BUILDING__ */
|