X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=point.h;h=fc27a9b2305684d846e0e45fbd899c310e4b7a88;hb=2e871a550c7f98af3cb0331c8edc82ddca215b40;hp=5b13e2696067bd9fa00b1f37e02609639f597b75;hpb=8b203a503da03228816ccee374f766ccdb1472f5;p=cascardo%2Fmovie.git diff --git a/point.h b/point.h index 5b13e26..fc27a9b 100644 --- a/point.h +++ b/point.h @@ -20,10 +20,16 @@ #ifndef POINTS_H #define POINTS_H +#include + typedef struct { int x, y; + double rx, ry; char *name; } Point; +GArray * ReadPoints (char *); +void rescale_points (GArray *); + #endif