(double z)
| 89 | } |
| 90 | |
| 91 | public void setZ(double z) { |
| 92 | Point3D coords = new Point3D(0, 0, z); |
| 93 | if (coordinates != null) { |
| 94 | coords = new Point3D(this.coordinates.getX(), this.coordinates.getY(), z); |
| 95 | } |
| 96 | setCoordinates(coords); |
| 97 | } |
| 98 | |
| 99 | @XmlTransient |
| 100 | public double getX() { |