()
| 315 | return font.getCapHeight(); |
| 316 | } |
| 317 | public float getLineHeight() { |
| 318 | if (font == null) |
| 319 | return 0f; |
| 320 | updateScale(); |
| 321 | return font.getLineHeight(); |
| 322 | } |
| 323 | |
| 324 | public void draw(Batch batch, String text, Color color, float x, float y, float w, boolean wrap, int horzAlignment) { |
| 325 | updateScale(); |
no test coverage detected