image2/
geom.rs

1/// (x, y) coordinates
2pub type Point = euclid::Point2D<usize, f64>;
3
4/// Image (width, height)
5pub type Size = euclid::Size2D<usize, f64>;
6
7/// Region of interest
8pub type Region = euclid::Rect<usize, f64>;