-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_home.java
174 lines (135 loc) · 4.62 KB
/
simple_home.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Color;
/**
*
* @author bushra
*/
public class NewApplet extends Applet {
/**
* Initialization method that will be called after the applet is loaded into
* the browser.
*/
public void init() {
resize(950, 650);
}
@Override
public void paint(Graphics g) {
g.setColor(Color.CYAN);
g.fillRect (0,0,950,500);
g.setColor(Color.green);
g.fillRect (0,500,950,650);
//right home ground floor
g.setColor(Color.gray);
int a[] = {142,142,166,166};
int b[] = {560,512,512,560};
g.fillPolygon(a, b, 4);
g.setColor(Color.yellow);
int c[] = {142,142,500,500,166,166};
int d[] = {512,366,366,403,403,512};
g.fillPolygon(c, d, 6);
g.setColor(Color.darkGray);
int e[] = {142,137,500,500};
int f[] = {366,335,335,366};
g.fillPolygon(e, f, 4);
//garage
g.setColor(Color.white);
int eg[] = {166,166,500,500};
int fg[] = {560,403,403,560};
g.fillPolygon(eg, fg, 4);
g.setColor(Color.lightGray);
g.drawRect(180, 415, 305, 20);
g.drawRect(180, 455, 305, 20);
g.drawRect(180, 495, 305, 20);
g.drawRect(180, 535, 305, 20);
//
int efg[] = {354,354,522,522};
int ffg[] = {335,245,245,335};
g.fillPolygon(efg, ffg, 4);
//
g.setColor(Color.DARK_GRAY);
int afg[] = {336,502,522};
int agg[] = {245,193,245};
g.fillPolygon(afg, agg, 3);
//right gray
g.setColor(Color.gray);
int eqd[] = {900,900,944,935};
int fqd[] = {357,324,324,357};
g.fillPolygon(eqd, fqd, 4);
//right short building
g.setColor(Color.yellow);
int eq1d[] = {900,900,935,935};
int fqd1[] = {560,357,357,560};
g.fillPolygon(eq1d, fqd1, 4);
//right
g.setColor(Color.gray);
int aa[] = {500,500,900,900};
int ba[] = {560,512,512,560};
g.fillPolygon(aa, ba, 4);
g.setColor(Color.YELLOW);
int aaa[] = {500,500,900,900};
int baa[] = {512,337,337,512};
g.fillPolygon(aaa, baa, 4);
g.setColor(Color.darkGray);
int ed[] = {500,490,910,900};
int fd[] = {337,294,294,337};
g.fillPolygon(ed, fd, 4);
//rightroof
g.setColor(Color.DARK_GRAY);
int edd[] = {520,480,693,930,880};
int fdd[] = {245,138,100,138,183};
g.fillPolygon(edd, fdd, 5);
//right2
g.setColor(Color.lightGray);
int e5d[] = {520,520,880,880};
int f5d[] = {294,158,158,294};
g.fillPolygon(e5d, f5d, 4);
//door
g.setColor(Color.black);
int e7d[] = {540,540,660,660};
int f7d[] = {560,374,374,560};
g.fillPolygon(e7d, f7d, 4);
int e1d[] = {720,720,870,870};
int f1d[] = {540,384,384,540};
g.fillPolygon(e1d, f1d, 4);
g.setColor(Color.white);
int e3d[] = {550,550,650,650};
int f3d[] = {550,394,394,550};
g.fillPolygon(e3d, f3d, 4);
int esd[] = {730,730,860,860};
int fsd[] = {520,404,404,520};
g.fillPolygon(esd, fsd, 4);
g.setColor(Color.black);
g.drawRect(560, 398, 20, 145);
g.drawRect(590, 398, 20, 145);
g.drawRect(620, 398, 20, 145);
g.drawRect(745, 410, 20, 103);
g.drawRect(785, 410, 20, 103);
g.drawRect(825, 410, 20, 103);
g.fillRect(700, 337, 2, 223);
g.fillRect(900, 337, 2, 223);
g.fillRect(500, 337, 2, 223);
g.fillRect(520, 155, 2, 140);
g.fillRect(880, 155, 2, 140);
//window
g.fillRect(570, 180, 60, 100);
g.fillRect(670, 180, 60, 100);
g.fillRect(770, 180, 60, 100);
g.fillRect(390, 265, 60, 70);
//tree1
g.setColor (new Color(96, 25, 25));
int tre [] = {30,40,50,60};
int tree [] = {550,400,400,550};
g.fillPolygon (tre, tree, 4);
g.setColor (new Color(20, 112, 50));
g.fillArc (-10,350,120,80,0,360);
g.fillArc (-10,320,130,80,0,360);
g.fillArc (-10,290,110,100,0,360);
g.fillArc (0,260,60,90,0,360);
}
}