()
| 309 | return font.getAscent(); |
| 310 | } |
| 311 | public float getCapHeight() { |
| 312 | if (font == null) |
| 313 | return 0f; |
| 314 | updateScale(); |
| 315 | return font.getCapHeight(); |
| 316 | } |
| 317 | public float getLineHeight() { |
| 318 | if (font == null) |
| 319 | return 0f; |
no test coverage detected