X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fmovie.git;a=blobdiff_plain;f=point.h;h=24a3f78af1267f0df628ded8f91f8c9c741821ba;hp=5b13e2696067bd9fa00b1f37e02609639f597b75;hb=HEAD;hpb=8b203a503da03228816ccee374f766ccdb1472f5 diff --git a/point.h b/point.h index 5b13e26..24a3f78 100644 --- a/point.h +++ b/point.h @@ -20,10 +20,18 @@ #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 *, GArray *); +GArray * drop_dup_frames (GArray *, int); +GArray *get_scales (int); + #endif