comparison gnv-artifacts/src/main/java/de/intevation/gnv/math/Point2d.java @ 431:422275fc9927

Refactored the XYColumn and Point2d code a bit to be more reusable in 3D. gnv-artifacts/trunk@479 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 23 Dec 2009 06:53:46 +0000
parents f66088a43ecc
children b248531fa20b
comparison
equal deleted inserted replaced
430:23e9352df09b 431:422275fc9927
57 public int j; 57 public int j;
58 58
59 public Point2d() { 59 public Point2d() {
60 } 60 }
61 61
62 public Point2d(double x, double y, int i, int j) {
63 super(x, y);
64 this.i = i;
65 this.j = j;
66 }
67
62 public Point2d(double x, double y, double z, int i, int j) { 68 public Point2d(double x, double y, double z, int i, int j) {
63 super(x, y, z); 69 super(x, y, z);
64 this.i = i; 70 this.i = i;
65 this.j = j; 71 this.j = j;
66 } 72 }

http://dive4elements.wald.intevation.org