-
Notifications
You must be signed in to change notification settings - Fork 0
/
Racket.java
77 lines (53 loc) · 1.31 KB
/
Racket.java
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.example.helloworld;
import javafx.scene.paint.Color;
public class Racket {
private double posX =30;
private double posY =300;
private double thickness=20;
private double size=60;
private Color color=Color.WHITE;
public double getPosX() {
return posX;
}
public void setPosX(double posX) {
this.posX = posX;
}
public double getPosY() {
return posY;
}
public void r1_setPosY(double posY) {
this.posY = posY;
}
public double getThickness() {
return thickness;
}
public void setThickness(double thickness) {
this.thickness = thickness;
}
public double getSize() {
return size;
}
public void setSize(double size) {
this.size = size;
}
public void setColor(Color color) {
this.color = color;
}
public Color getColor() {
return color;
}
public void resizeX(double factor) {
this.posX = this.posX *factor;
this.thickness = this.thickness*factor;
}
public void resizeY(double factor) {
this.posY = this.posY *factor;
this.thickness = this.thickness*factor;
}
public void moveUp() {
this.posY=this.posY-5;
}
public void moveDown() {
this.posY=this.posY+5;
}
}