comparison flys-backend/src/main/java/de/intevation/flys/importer/parsers/tim/Coordinate.java @ 4732:7fdddc6ba296

Initial version of support files for TIMParser, comments and TODOs by Felix Wolfsteller, Code by Sascha Teichmann.
author Sascha Teichmann <sascha.teichmann@intevation.de>
date Fri, 28 Dec 2012 15:01:12 +0100
parents
children ce6b9945bf8e
comparison
equal deleted inserted replaced
4731:7d9fcd322c45 4732:7fdddc6ba296
1 package de.intevation.flys.importer.parsers.tim;
2
3 public class Coordinate
4 {
5 public double x;
6 public double y;
7 public double z;
8
9 public Coordinate() {
10 }
11
12 public Coordinate(Coordinate c) {
13 this(c.x, c.y, c.z);
14 }
15
16 public Coordinate(double x, double y) {
17 this(x, y, 0d);
18 }
19
20 public Coordinate(double x, double y, double z) {
21 this.x = x;
22 this.y = y;
23 this.z = z;
24 }
25 }
26 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org