36 files changed, 332 insertions, 176 deletions
diff --git a/src/controller/set_ortho.c b/src/controller/set_ortho.c deleted file mode 100644 index 6478d21..0000000 --- a/src/controller/set_ortho.c +++ b/dev/null @@ -1,21 +0,0 @@ -#include "set_ortho.h" -#include "../view/exp004state0.h" -#include <GL/glut.h> - -#define S exp004state0 - -void -set_ortho (void) -{ - if (S.zoom.active) - { - gluOrtho2D (S.zoom.coords[0], - S.zoom.coords[1], S.zoom.coords[2], S.zoom.coords[3]); - } - else - { - gluOrtho2D (S.ortho.min_x, S.ortho.max_x, S.ortho.min_y, S.ortho.max_y); - } - - return; -} |