-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab04.java
37 lines (33 loc) · 1.04 KB
/
Lab04.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
/*********************************
Lab04: The AWT Graphics Program
Name: Amir Mousavi
Submitted: June 17, 2013
Teacher: Christopher Slowley
*******************************/
import java.awt.*;
import java.applet.*;
public class Lab04 extends Applet {
public void init() {
resize(500,400); // Make the applet 500 pixels wide, 400 tall
// You should not have to change this init() method at all.
}
public void paint(Graphics g) {
g.drawLine(200,40,110,150);
g.drawLine(110,150,280,150);
g.drawLine(200,40,280,150);
g.drawLine(320,60,280,150);
g.drawLine(200,40,320,60);
g.fillArc(400,40,160,160,0,360);
g.setColor(Color.white);
g.fillArc(415,55,130,130,0,360);
g.setColor(Color.blue);
g.fillArc(430,70,100,100,0,360);
g.setColor(Color.red);
g.fillArc(445,85,70,70,0,360);
g.setColor(Color.yellow);
g.fillArc(460,100,40,40,0,360);
}
private void setColor(int i, int j, int k) {
// TODO Auto-generated method stub
}
}