comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/ZoomObj.java @ 1280:66192d170c79

Bugfix: #179 and #198 Zoom-out will no longer work with a factor but with stacked chart extents. flys-client/trunk@2862 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 29 Sep 2011 11:12:04 +0000
parents
children 8bbaa0d173cf
comparison
equal deleted inserted replaced
1279:af6ad7522351 1280:66192d170c79
1 package de.intevation.flys.client.shared.model;
2
3 import java.io.Serializable;
4
5
6 public class ZoomObj implements Serializable {
7
8 protected double a;
9 protected double b;
10 protected double c;
11 protected double d;
12
13
14 public ZoomObj() {
15 }
16
17
18 public ZoomObj(double a, double b, double c, double d) {
19 this.a = a;
20 this.b = b;
21 this.c = c;
22 this.d = d;
23 }
24
25
26 public double[] getZoom() {
27 return new double[] { a, b, c, d };
28 }
29 }
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org