pub struct FontTweak {
pub scale: f32,
pub y_offset_factor: f32,
pub y_offset: f32,
pub baseline_offset_factor: f32,
}
Expand description
Extra scale and vertical tweak to apply to all text of a certain font.
Fields§
§scale: f32
Scale the font’s glyphs by this much. this is only a visual effect and does not affect the text layout.
Default: 1.0
(no scaling).
y_offset_factor: f32
Shift font’s glyphs downwards by this fraction of the font size (in points). this is only a visual effect and does not affect the text layout.
A positive value shifts the text downwards. A negative value shifts it upwards.
Example value: -0.2
.
y_offset: f32
Shift font’s glyphs downwards by this amount of logical points. this is only a visual effect and does not affect the text layout.
Example value: 2.0
.
baseline_offset_factor: f32
When using this font’s metrics to layout a row, shift the entire row downwards by this fraction of the font size (in points).
A positive value shifts the text downwards. A negative value shifts it upwards.