From a75a9b74bdd3a5b01910fc23bba35dea07be6208 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 18 Oct 2018 22:59:53 +0200 Subject: [PATCH] add anotherline to example --- examples/embedded_linux_epd4in2/src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/embedded_linux_epd4in2/src/main.rs b/examples/embedded_linux_epd4in2/src/main.rs index df77102..5088139 100644 --- a/examples/embedded_linux_epd4in2/src/main.rs +++ b/examples/embedded_linux_epd4in2/src/main.rs @@ -330,6 +330,12 @@ fn run() -> Result<(), std::io::Error> { .into_iter(), ); + display.draw( + Line::new(Coord::new(90, 14), Coord::new(90, 42)) + .with_stroke(Some(Color::Black)) + .into_iter(), + ); + let mut i = 0;