Struct andrew::text::Text [−][src]
pub struct Text<'a> {
pub pos: (usize, usize),
pub color: [u8; 4],
pub text: String,
pub font: Font<'a>,
pub scale: Scale,
pub v_metrics: VMetrics,
}
Expand description
A drawable object that represents text
Fields
pos: (usize, usize)
The position of the text on the canvas
color: [u8; 4]
The color of the text
text: String
The text that is rendered to the canvas on draw
font: Font<'a>
The font used in rendering the text
scale: Scale
The scale that is applied to the text
v_metrics: VMetrics
The vertical metrics of the text