Location.java
623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.servlet.utilities;
/**
* Class Location
*
*/
public class Location {
private double x; /** x coordinate of the location */
private double y; /** y coordinate of the location */
private double z; /** z coordinate of the location */
public Location (double x, double y, double z){
this.setX(x);
this.setY(y);
this.setZ(z);
}
public double getX() {
return x;
}
public void setX(double x) {
this.x = x;
}
public double getY() {
return y;
}
public void setY(double y) {
this.y = y;
}
public double getZ() {
return z;
}
public void setZ(double z) {
this.z = z;
}
}