-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBall.java
More file actions
48 lines (38 loc) · 772 Bytes
/
Ball.java
File metadata and controls
48 lines (38 loc) · 772 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
43
44
45
46
47
48
package Ball;
public class Ball {
private double x = 0.0;
private double y = 0.0;
public Ball(double x, double y){
this.x = x;
this.y = y;
}
public Ball(){
}
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 void setXY(double x, double y){
this.x = x;
this.y = y;
}
public void move(double xDisp, double yDisp){
x+=xDisp;
y+=yDisp;
}
@Override
public String toString() {
return "Ball coordinates" +
" (" + x +
"," + y +
')';
}
}