summaryrefslogtreecommitdiffstats
Unidiff
-rw-r--r--src/controller/actions/set_ortho.c13
-rw-r--r--src/controller/actions/zoom.c70
-rw-r--r--src/controller/actions/zoom.h4
-rw-r--r--src/controller/callbacks/display.c6
-rw-r--r--src/controller/callbacks/keyboard.c7
-rw-r--r--src/controller/callbacks/mouse.c49
-rw-r--r--src/controller/callbacks/mouse_wheel.c66
-rw-r--r--src/controller/callbacks/reshape.c68
-rw-r--r--src/model/geometry/density_legend_geometry.c18
-rw-r--r--src/model/state/zoom_info.h1
-rw-r--r--src/model/state/zoom_info_init.c6
11 files changed, 197 insertions, 111 deletions
diff --git a/src/controller/actions/set_ortho.c b/src/controller/actions/set_ortho.c
index 4309c76..ce66f60 100644
--- a/src/controller/actions/set_ortho.c
+++ b/src/controller/actions/set_ortho.c
@@ -7,15 +7,10 @@
7void7void
8set_ortho (void)8set_ortho (void)
9{9{
10 if (S.zoom.active)10 gluOrtho2D (S.ortho.min_x,
11 {11 S.ortho.max_x,
12 gluOrtho2D (S.zoom.coords[0],12 S.ortho.min_y,
13 S.zoom.coords[1], S.zoom.coords[2], S.zoom.coords[3]);13 S.ortho.max_y);
14 }
15 else
16 {
17 gluOrtho2D (S.ortho.min_x, S.ortho.max_x, S.ortho.min_y, S.ortho.max_y);
18 }
1914
20 return;15 return;
21}16}

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.