view 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
line wrap: on
line source
package de.intevation.flys.importer.parsers.tim;

public class Coordinate
{
    public double x;
    public double y;
    public double z;

    public Coordinate() {
    }

    public Coordinate(Coordinate c) {
        this(c.x, c.y, c.z);
    }

    public Coordinate(double x, double y) {
        this(x, y, 0d);
    }

    public Coordinate(double x, double y, double z) {
        this.x = x;
        this.y = y;
        this.z = z;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org