Returns descent of the current font at its current size. This information is useful for determining the height of the font below the baseline. @webref typography:metrics @webBrief Returns descent of the current font at its current size @see PGraphics#textAscent()
()
| 4322 | * @see PGraphics#textAscent() |
| 4323 | */ |
| 4324 | public float textDescent() { |
| 4325 | if (textFont == null) { |
| 4326 | defaultFontOrDeath("textDescent"); |
| 4327 | } |
| 4328 | return textFont.descent() * textSize; |
| 4329 | } |
| 4330 | |
| 4331 | |
| 4332 | /** |
no test coverage detected