Skip to content
Snippets Groups Projects
Commit fa8a594d authored by Stephen D's avatar Stephen D
Browse files

fixes

parent ba5de2df
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ use image::{GenericImageView, ImageReader, Rgba}; ...@@ -3,7 +3,7 @@ use image::{GenericImageView, ImageReader, Rgba};
const TOAST_TIME_SECONDS: u64 = 10; const TOAST_TIME_SECONDS: u64 = 10;
const CENTER_X: f64 = 100.0; const CENTER_X: f64 = 100.0;
const CENTER_Y: f64 = 100.0; const CENTER_Y: f64 = 100.0;
const BREAD_HEIGHT: f64 = 0.3; const BREAD_HEIGHT: f64 = 0.4;
const IDLE_HEIGHT: f64 = BREAD_HEIGHT + 8.0; const IDLE_HEIGHT: f64 = BREAD_HEIGHT + 8.0;
const PIXEL_SIZE_MM: f64 = 1.5; const PIXEL_SIZE_MM: f64 = 1.5;
...@@ -22,8 +22,8 @@ fn main() -> anyhow::Result<()> { ...@@ -22,8 +22,8 @@ fn main() -> anyhow::Result<()> {
if black { if black {
toast( toast(
x as f64 - (img.width() as f64 / 2.0), x as f64 - (img.width() as f64),
y as f64 + (img.height() as f64 / 2.0), // correct for reflection when printing (img.height() as f64) - y as f64, // correct for reflection when printing
); );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment