More generic use of event.
[familia.git] / src / math / positions.h
index 6db7f3d40d2f9d2c63f94c66f57b5a2dd07d629b..878616e141720fe244b967c3a26a16bc053c7ee1 100644 (file)
 #include "storage/individual.h"
 #include "storage/family.h"
 
+struct objects_boundaries {
+       double top;
+       double right;
+       double bottom;
+       double left;
+};
+
+/**
+ * @file math/positions.h
+ * @brief Code for calculating 3D positions of objects.
+ *
+ */
+
 /**
  * Calculates local position of given individual
- * @parameter individual to calculate position
+ * @param individual individual to calculate position
  * @return calculated local position of the individual
  */
-struct position * familia_position_calculate_individual_position(struct familia_individual * individual);
+struct position * calculate_individual_position(struct familia_individual * individual);
 
 /**
  * Calculates local position of given family
- * @parameter family to calculate position
+ * @param family family to calculate position
  * @return calculated local position of the family
  */
-struct position * familia_position_calculate_family_position(struct familia_family * family);
+struct position * calculate_family_position(struct familia_family * family);
 
-#endif /* _FAMILIA_MATH_3D_H */
+#endif /* _FAMILIA_MATH_POSITIONS_H */