-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram1.java
153 lines (125 loc) · 4.79 KB
/
Program1.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
//import wheelsunh.users.*;
import java.awt.Color;
/**
* P1Start.java.
* Displays a pad for building yor personal digital Avatar.
*
* @author Jeffrey Fernandes
* Assignment #1
* 1P
*/
public class Program1
{
private Color skin = new Color( 255, 228, 200 );
private Rectangle pad, chest, leftLeg, rightLeg;
private Ellipse head, leftEye, rightEye, leftPupil
, rightPupil, leftElbow, rightElbow, leftHand
, rightHand, mouth, mouthCover, leftThumb
, rightThumb;
private RoundedRectangle leftArm, rightArm, shoes;
private Line left, right;
/** Constructor.
*
*/
public Program1( )
{
pad = new Rectangle( 200, 200 );
pad.setFillColor( Color.WHITE );
pad.setFrameColor( Color.BLACK );
pad.setSize( 105, 123 );
chest = new Rectangle( 228, 240 );
chest.setFillColor( Color.BLUE );
chest.setFrameColor( Color.BLUE );
head = new Ellipse( 231, 205 );
head.setFillColor( skin );
head.setFrameColor( skin );
head.setSize( 43, 45 );
leftEye = new Ellipse( 241, 216 );
leftEye.setFillColor( Color.WHITE );
leftEye.setFrameColor( Color.GRAY );
leftEye.setRotation( 15 );
leftEye.setSize( 11, 16 );
rightEye = new Ellipse( 252, 216 );
rightEye.setFillColor( Color.WHITE );
rightEye.setFrameColor( Color.GRAY );
rightEye.setRotation( 345 );
rightEye.setSize( 11, 16 );
leftLeg = new Rectangle( 228, 284 );
leftLeg.setFillColor( Color.BLACK );
leftLeg.setFrameColor( Color.BLACK );
leftLeg.setSize( 25, 25 );
rightLeg = new Rectangle( 253, 284 );
rightLeg.setFillColor( Color.BLACK );
rightLeg.setFrameColor( Color.BLACK );
rightLeg.setSize( 25, 25 );
leftPupil = new Ellipse( 256, 222 );
leftPupil.setFillColor( Color.BLACK );
leftPupil.setFrameColor( Color.BLACK );
leftPupil.setSize( 2, 2 );
rightPupil = new Ellipse( 246, 222 );
rightPupil.setFillColor( Color.BLACK );
rightPupil.setFrameColor( Color.BLACK );
rightPupil.setSize( 2, 2 );
leftArm = new RoundedRectangle( 221, 240 );
leftArm.setFillColor( Color.BLUE );
leftArm.setFrameColor( Color.BLUE );
leftArm.setRotation( 1 );
leftArm.setSize( 8, 36 );
rightArm = new RoundedRectangle( 275, 240 );
rightArm.setFillColor( Color.BLUE );
rightArm.setFrameColor( Color.BLUE );
rightArm.setRotation( 1 );
rightArm.setSize( 8, 35 );
leftElbow = new Ellipse( 220, 250 );
leftElbow.setFillColor( Color.BLUE );
leftElbow.setFrameColor( Color.BLUE );
leftElbow.setSize( 4, 20 );
rightElbow = new Ellipse( 280, 250 );
rightElbow.setFillColor( Color.BLUE );
rightElbow.setFrameColor( Color.BLUE );
rightElbow.setSize( 4, 20 );
left = new Line( 230, 255, 230, 280 );
left.setColor( Color.BLACK );
right = new Line( 273, 255, 273, 280 );
right.setColor( Color.BLACK );
leftHand = new Ellipse( 220, 275 );
leftHand.setFillColor( skin );
leftHand.setFrameColor( skin );
leftHand.setSize( 12, 12 );
rightHand = new Ellipse( 273, 275 );
rightHand.setFillColor( skin );
rightHand.setFrameColor( skin );
rightHand.setSize( 12, 12 );
mouth = new Ellipse( 247, 235 );
mouth.setFillColor( Color.BLACK );
mouth.setFrameColor( Color.BLACK );
mouth.setSize( 10, 5 );
mouthCover = new Ellipse( 247, 234 );
mouthCover.setFillColor( skin );
mouthCover.setFrameColor( skin );
mouthCover.setSize( 10, 5 );
shoes = new RoundedRectangle( 252, 280 );
shoes.setFillColor( Color.BLACK );
shoes.setFrameColor( Color.BLACK );
shoes.setRotation( 90 );
shoes.setSize( 2, 56 );
leftThumb = new Ellipse( 226, 277 );
leftThumb.setFrameColor( Color.BLACK );
leftThumb.setFillColor( skin );
leftThumb.setSize( 5, 5 );
rightThumb = new Ellipse( 273, 277 );
rightThumb.setFrameColor( Color.BLACK );
rightThumb.setFillColor( skin );
rightThumb.setSize( 5, 5 );
}
// -----------------------------------------------------------------
/** main program creates a Frame and invokes the class constructor.
*
* @param args String
*/
public static void main( String[] args )
{
Frame f = new Frame( );
Program1 app = new Program1( );
}
} //End of Class P1Start