textLeading()
Typography / AttributesDescription
Sets the spacing between lines of text in units of pixels.
Syntax
void textLeading(float leading)
Parameters
| Name | Type | Description |
|---|---|---|
| leading | float | spacing between lines |
Returns
voidRelated
Under the Hood
From Processing.h:
void textLeading(float leading);
Under the Hood
From Processing.cpp:
void PApplet::textLeading(float v) { g_textLeading = v; }