Package | Description |
---|---|
ui.properties |
Modifier and Type | Method and Description |
---|---|
void |
DrawScreen.drawCircle(int xCenter,
int yCenter,
int width,
int height,
Colour colour,
boolean fill)
Draws a circle.
|
void |
DrawScreen.drawLine(int xStart,
int yStart,
int xEnd,
int yEnd,
Colour colour)
Draws a line.
|
void |
DrawScreen.drawPixel(int x,
int y,
Colour colour)
Draws a single pixel.
|
void |
DrawScreen.drawSquare(int xTopLeft,
int yTopLeft,
int width,
int height,
Colour colour,
boolean fill)
Draws a square.
|
void |
DrawScreen.drawText(int xTopLeft,
int yTopLeft,
java.lang.String text,
Colour colour)
Draws a piece of text.
|