position font elsewhere
parent
73115fd0f3
commit
967c67f9a6
|
|
@ -302,13 +302,25 @@ fn run() -> Result<(), std::io::Error> {
|
||||||
|
|
||||||
display.draw(
|
display.draw(
|
||||||
Font6x8::render_str("It's working-BoW!")
|
Font6x8::render_str("It's working-BoW!")
|
||||||
|
// Using Style here
|
||||||
|
.with_style(Style {
|
||||||
|
fill_color: Some(Color::Black),
|
||||||
|
stroke_color: Some(Color::Black),
|
||||||
|
stroke_width: 0u8, // Has no effect on fonts
|
||||||
|
})
|
||||||
|
.translate(Coord::new(50, 200))
|
||||||
|
.into_iter(),
|
||||||
|
);
|
||||||
|
|
||||||
|
display.draw(
|
||||||
|
Font12x16::render_str("It's working-BoW!")
|
||||||
// Using Style here
|
// Using Style here
|
||||||
.with_style(Style {
|
.with_style(Style {
|
||||||
fill_color: Some(Color::White),
|
fill_color: Some(Color::White),
|
||||||
stroke_color: Some(Color::Black),
|
stroke_color: Some(Color::Black),
|
||||||
stroke_width: 0u8, // Has no effect on fonts
|
stroke_width: 0u8, // Has no effect on fonts
|
||||||
})
|
})
|
||||||
.translate(Coord::new(50, 50))
|
.translate(Coord::new(50, 22))
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue