Using java BlueJ write a class Forest that has a method paintTree( )that displays one tree. Use BorderLayoutManager in this class. The user should be able to enter the number of trees in the forest in a JTextField Using a loop statement, draw a forest by repeatedly invoking the method paintTree ( ). The forest should consist of randomly located trees with the random color of the tree tops. The user should be able to redraw a forest multiple times by entering a different number of trees into JTextField (the previous picture will be replaced by a new forest) Method paintTree ( ) should have 4 parameters: Graphics g, x and y coordinates, treeColor - color of the tree top x, y and treeColor must be generated randomly for each tree.
Using java BlueJ write a class Forest that has a method paintTree( )that displays one tree. Use BorderLayoutManager in this class.
The user should be able to enter the number of trees in the forest in a JTextField
Using a loop statement, draw a forest by repeatedly invoking the method paintTree ( ).
The forest should consist of randomly located trees with the random color of the tree tops.
The user should be able to redraw a forest multiple times by entering a different number of trees into
JTextField (the previous picture will be replaced by a new forest)
Method paintTree ( ) should have 4 parameters:
Graphics g, x and y coordinates,
treeColor - color of the tree top
x, y and treeColor must be generated randomly for each tree.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images