Reference×
Reference
- [] (array access)
- = (assign)
- catch
- class
- , (comma)
- // (comment)
- {} (curly braces)
- /** */ (doc comment)
- . (dot)
- draw()
- exit()
- extends
- false
- final
- implements
- import
- loop()
- /* */ (multiline comment)
- new
- noLoop()
- null
- () (parentheses)
- popStyle()
- pop()
- private
- public
- pushStyle()
- push()
- redraw()
- return
- ; (semicolon)
- setLocation()
- setResizable()
- setTitle()
- setup()
- static
- super
- this
- thread()
- true
- try
- void
Name
textDescent()
Description
Returns descent of the current font at its current size. This information is useful for determining the height of the font below the baseline.
Examples
size(400, 400); float base = height * 0.75; float scalar = 0.8; // Different for each font textSize(128); // Set initial text size textSize(128); // Set initial text size float a = textDescent() * scalar; // Calc ascent line(0, base+a, width, base+a); text("dp", 0, base); // Draw text on baseline textSize(256); // Increase text size a = textDescent() * scalar; // Recalc ascent line(160, base+a, width, base+a); text("dp", 160, base); // Draw text on baseline
Syntax
textDescent()
Return
float
Related

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.