(char character, int x, int y)
| 887 | /// |
| 888 | /// use drawString instead, this method is inefficient |
| 889 | public void drawChar(char character, int x, int y) { |
| 890 | drawString("" + character, x, y); |
| 891 | } |
| 892 | |
| 893 | /// Draw the given char array using the current font and color in the x,y coordinates. The font is drawn |
| 894 | /// from the top position and not the baseline. |
no test coverage detected