001package armyc2.c5isr.web.render.utilities;
002
003import armyc2.c5isr.graphics2d.Point2D;
004
005public class Point3D extends Point2D.Double {
006    public double z;
007
008    public Point3D() {
009        super();
010    }
011
012    public Point3D(Point2D pt, double z) {
013        super(pt.getX(), pt.getY());
014        this.z = z;
015    }
016
017    public Point3D(double x, double y, double z) {
018        super(x, y);
019        this.z = z;
020
021    }
022
023    public double getZ() {
024        return this.z;
025    }
026}