FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java-Programming-Exercises/MyDrawPanel.java at master · RoyTien/Java-Programming-Exercises · GitHub
RoyTien
/
Java-Programming-Exercises
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java-Programming-Exercises
/
MyDrawPanel.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (18 loc) · 651 Bytes
Breadcrumbs
Java-Programming-Exercises
/
MyDrawPanel.java
Copy path
File metadata and controls
24 lines (18 loc) · 651 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import
java
.
awt
.*;
import
javax
.
swing
.*;
class
MyDrawPanel
extends
JPanel
{
public
void
paintComponent
(
Graphics
g
){
Graphics2D
g2d
= (
Graphics2D
)
g
;
int
myRed
= (
int
)(
Math
.
random
() *
255
);
int
myGreen
= (
int
)(
Math
.
random
() *
255
);
int
myBlue
= (
int
)(
Math
.
random
() *
255
);
Color
startColor
=
new
Color
(
myRed
,
myGreen
,
myBlue
);
myRed
= (
int
)(
Math
.
random
() *
255
);
myGreen
= (
int
)(
Math
.
random
() *
255
);
myBlue
= (
int
)(
Math
.
random
() *
255
);
Color
endColor
=
new
Color
(
myRed
,
myGreen
,
myBlue
);
GradientPaint
gradient
=
new
GradientPaint
(
70
,
70
,
startColor
,
150
,
150
,
endColor
);
g2d
.
setPaint
(
gradient
);
g2d
.
fillOval
(
70
,
70
,
100
,
100
);
}
}
Back
|
FazBrowse Home
|
New Git URL