-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRectangle.java
256 lines (186 loc) · 3.89 KB
/
Rectangle.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import javafx.scene.paint.Color;
import javafx.scene.canvas.GraphicsContext;
/**
* This class creates and can display a rectangle on the canvas.
*
* @author Dave Slemon
* @version v101
*/
public class Rectangle {
//static variable
public static int nextRectId;
//instance variables
private double length;
private double width;
private double topLeft_x;
private double topLeft_y;
private Color fillColor;
private Color borderColor;
/**
*
* It is a constructor.
*
*/
public Rectangle() {
this(20, 40);
}
/**
*
* It is a constructor.
*
* @param length the length.
* @param width the width.
*/
public Rectangle(double length, double width) {
this(length, width, Color.YELLOW, Color.RED, 50, 100);
}
/**
*
* It is a constructor.
*
* @param length the length.
* @param width the width.
* @param fillColor the fill color.
* @param borderColor the border color.
* @param x the x.
* @param y the y.
*/
public Rectangle(double length, double width, Color fillColor, Color borderColor, double x, double y) {
this.length = length;
this.width = width;
this.fillColor = fillColor;
this.borderColor = borderColor;
topLeft_x = x;
topLeft_y = y;
nextRectId = nextRectId + 1;
}
/**
*
* Gets the length
*
* @return the length
*/
public double getLength() {
return length;
}
/**
*
* Sets the length
*
* @param length the length.
*/
public void setLength(double length) {
this.length = length;
}
/**
*
* Gets the width
*
* @return the width
*/
public double getWidth() {
return width;
}
/**
*
* Sets the width
*
* @param width the width.
*/
public void setWidth(double width) {
this.width = width;
}
/**
*
* Gets the top left_x
*
* @return the top left_x
*/
public double getTopLeft_x() {
return topLeft_x;
}
/**
*
* Sets the top left_x
*
* @param topLeft_x the top left_x.
*/
public void setTopLeft_x(double topLeft_x) {
this.topLeft_x = topLeft_x;
}
/**
*
* Gets the top left_y
*
* @return the top left_y
*/
public double getTopLeft_y() {
return topLeft_y;
}
/**
*
* Sets the top left_y
*
* @param topLeft_y the top left_y.
*/
public void setTopLeft_y(double topLeft_y) {
this.topLeft_y = topLeft_y;
}
/**
*
* Gets the fill color
*
* @return the fill color
*/
public Color getFillColor() {
return fillColor;
}
/**
*
* Sets the fill color
*
* @param fillColor the fill color.
*/
public void setFillColor(Color fillColor) {
this.fillColor = fillColor;
}
/**
*
* Gets the border color
*
* @return the border color
*/
public Color getBorderColor() {
return borderColor;
}
/**
*
* Sets the border color
*
* @param borderColor the border color.
*/
public void setBorderColor(Color borderColor) {
this.borderColor = borderColor;
}
/**
*
* Draw
*
* @param gc the gc.
*/
public void draw(GraphicsContext gc) {
gc.setFill(fillColor);
gc.fillRect(topLeft_x, topLeft_y, width, length);
gc.setStroke(borderColor);
gc.strokeRect(topLeft_x, topLeft_y, width, length);
}
/**
*
* To string
*
* @return String
*/
public String toString() {
return "Rectangle #" + nextRectId + ": " + "length = " + length + " width = " + width;
}
}