Rescale points and use its individual scale to show image
[cascardo/movie.git] / point.h
diff --git a/point.h b/point.h
index f503922..fc27a9b 100644 (file)
--- a/point.h
+++ b/point.h
 typedef struct
 {
   int x, y;
+  double rx, ry;
   char *name;
 } Point;
 
 GArray * ReadPoints (char *);
+void rescale_points (GArray *);
 
 #endif