Displaying all loaded objects horizontally.
[familia.git] / src / math / positions.c
1 #include <stdlib.h>
2
3 #include "positions.h"
4 #include "storage/individual.h"
5 #include "storage/family.h"
6
7 struct position * calculate_individual_position(struct familia_individual * individual)
8 {
9 /*      TODO: Implement this function*/
10         return NULL;
11 }
12
13 struct position * calculate_family_position(struct familia_family * family)
14 {
15 /*      TODO: Implement this function*/
16         return NULL;
17 }