1pub type Coord = f32;
7pub type Point = euclid::default::Point2D<Coord>;
9pub type Rect = euclid::default::Rect<Coord>;
11pub type Size = euclid::default::Size2D<Coord>;
14
15pub type IntCoord = i32;
17pub type IntPoint = euclid::default::Point2D<IntCoord>;
19pub type IntRect = euclid::default::Rect<IntCoord>;
21pub type IntSize = euclid::default::Size2D<IntCoord>;
24pub type IntVector = euclid::default::Vector2D<IntCoord>;
26
27pub type UintSize = euclid::default::Size2D<u32>;
30
31#[allow(missing_docs)]
33pub trait Corners {
34 fn top_left(&self) -> Point;
35 fn top_right(&self) -> Point;
36 fn bottom_left(&self) -> Point;
37 fn bottom_right(&self) -> Point;
38}
39
40impl Corners for Rect {
41 fn top_left(&self) -> Point {
42 euclid::point2(self.min_x(), self.min_y())
43 }
44
45 fn top_right(&self) -> Point {
46 euclid::point2(self.max_x(), self.min_y())
47 }
48
49 fn bottom_left(&self) -> Point {
50 euclid::point2(self.min_x(), self.max_y())
51 }
52
53 fn bottom_right(&self) -> Point {
54 euclid::point2(self.max_x(), self.max_y())
55 }
56}
57
58pub(crate) trait LimitToBounds {
59 fn limit_to_bounds(&self, point: IntPoint) -> IntPoint;
60}
61
62impl LimitToBounds for IntRect {
63 fn limit_to_bounds(&self, point: IntPoint) -> IntPoint {
64 let x = point.x.min(self.max_x()).max(self.min_x());
65 let y = point.y.min(self.max_y()).max(self.min_y());
66 euclid::point2(x, y)
67 }
68}