(double y)
| 81 | } |
| 82 | |
| 83 | public void setY(double y) { |
| 84 | Point3D coords = new Point3D(0, y, 0); |
| 85 | if (coordinates != null) { |
| 86 | coords = new Point3D(this.coordinates.getX(), y, this.coordinates.getZ()); |
| 87 | } |
| 88 | setCoordinates(coords); |
| 89 | } |
| 90 | |
| 91 | public void setZ(double z) { |
| 92 | Point3D coords = new Point3D(0, 0, z); |