-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
59 lines (46 loc) · 1.52 KB
/
Main.java
File metadata and controls
59 lines (46 loc) · 1.52 KB
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
package structural.bridge;
public class Main {
public static void println(String x) {
System.out.println(x);
System.out.flush();
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
public static void errPrintln(String x) {
System.err.println(x);
System.err.flush();
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
public static void println() {
println("");
}
public static void main(String[] args) throws InterruptedException {
DrawingAPI openGL = new OpenGLAPI();
DrawingAPI directX = new DirectXAPI();
Shape circle1 = new Circle(5, 10, 2, openGL);
circle1.draw(); // OpenGL drawing circle at (5, 10) with radius 2
println();
Thread.sleep(1000);
Shape circle2 = new Circle(5, 10, 2, directX);
circle2.draw(); // DirectX drawing circle at (5, 10) with radius 2
println();
Thread.sleep(1000);
Shape rectangle1 = new Rectangle(0, 0, 4, 3, directX);
rectangle1.draw(); // DirectX drawing rectangle...
println();
Thread.sleep(1000);
Shape rectangle2 = new Rectangle(0, 0, 4, 3, openGL);
rectangle2.draw(); // DirectX drawing rectangle...
println();
Thread.sleep(1000);
rectangle2.resize(2); // Make it bigger
rectangle2.draw(); // Now draws a bigger rectangle
println();
Thread.sleep(1000);
}
}