| Author |
Need to finish my program, but lost
|
Stephen Norris
Ranch Hand
Joined: Oct 27, 2003
Posts: 44
|
|
I have written most of the code, but i have to get a JComboBox to display four shapes (circle, square, oval, and rectangle), then it has to draw that shape in the allotted space. The shapes have to be placed randomly around the window. I don't where in my program to place this part so that it will work and I don't know what to put in there so that it will be random spots. If someone could just help me with the circle part, then I could figure out the other shapes, I think. Here is the program:
|
 |
Marilyn de Queiroz
Sheriff
Joined: Jul 22, 2000
Posts: 9033
|
|
using the paint method (or paintComponent method) // draw a circle at (330, 15) graphics.drawRoundRect( 330 , 15, 80, 80, 80, 80 ) could be one way to draw a circle. drawOval() could be another way.
|
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
|
 |
 |
|
|
subject: Need to finish my program, but lost
|
|
|