33 files changed, 530 insertions, 113 deletions
diff --git a/src/controller/actions/zoom.c b/src/controller/actions/zoom.c index e33dcb8..d7f4140 100644 --- a/src/controller/actions/zoom.c +++ b/src/controller/actions/zoom.c | |||
@@ -1,14 +1,14 @@ | |||
1 | #include "zoom.h" | 1 | #include "zoom.h" |
2 | #include "../callbacks/reshape.h" | 2 | #include "../callbacks/reshape.h" |
3 | #include "../../util/check_error.h" | 3 | #include "../../util/check_error.h" |
4 | #include "../../view/exp004state0.h" | 4 | #include "../../view/state0.h" |
5 | #include <GL/glut.h> | 5 | #include <GL/glut.h> |
6 | #include <math.h> | 6 | #include <math.h> |
7 | 7 | ||
8 | /* | 8 | /* |
9 | * A simple alias to make the code more readable. | 9 | * A simple alias to make the code more readable. |
10 | */ | 10 | */ |
11 | #define S exp004state0 | 11 | #define S state0 |
12 | 12 | ||
13 | void | 13 | void |
14 | zoom (int x1, int y1, int x2, int y2) | 14 | zoom (int x1, int y1, int x2, int y2) |