Term
Write a method that will draw a String Literal at the given point (y,x) |
|
Definition
|
|
Term
Call the method that will change the color of the Graphics object g. |
|
Definition
|
|
Term
Call a method that wil draw a semi-circle that has dimentions of x length, y height; is positioned at (a,b); and begins at a 6:00 position. (filled) |
|
Definition
|
|
Term
Call a method that wil draw a semi-circle that has dimentions of x length, y height; is positioned at (a,b); and begins at a 6:00 position. (not filled)
|
|
Definition
|
|
Term
Draw a circle starting at position (x,y) with a radius of 20. |
|
Definition
|
|
Term
Draw an oval at position (x,y) with the length greater than the height. (filled) |
|
Definition
|
|
Term
Draw a square with the graphics class. |
|
Definition
|
|
Term
Draw a rectangle with dimetions 50,200.(filled) |
|
Definition
|
|
Term
Draw a red Line witht the graphics class. |
|
Definition
g.setColor(Color.RED);
g.drawLine(20,20,200,200); |
|
|