1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
use std::fmt::Display;
/// Rectangle.
#[derive(Debug, Clone, Copy)]
pub struct Rect {
/// X coordinate of the top-left corner.
pub x: f32,
/// Y coordinate of the top-left corner.
pub y: f32,
/// Width of the rectangle.
pub width: f32,
/// Height of the rectangle.
pub height: f32,
}
/// Rectangle position used for chaining constructors.
pub struct RectPosition {
pub x: f32,
pub y: f32,
}
impl RectPosition {
/// Makes a rectangle with the given size.
pub fn with_size(&self, width: f32, height: f32) -> Rect {
Rect {
x: self.x,
y: self.y,
width,
height,
}
}
/// Makes a rectangle with the given end point.
pub fn with_end(&self, x: f32, y: f32) -> Rect {
Rect {
x: self.x,
y: self.y,
width: x - self.x,
height: y - self.y,
}
}
}
impl Rect {
/// Starts a rectangle with the given position.
pub fn at(x: f32, y: f32) -> RectPosition {
RectPosition { x, y }
}
/// Right end of the rectangle.
pub fn right(&self) -> f32 {
self.x + self.width
}
/// Bottom end of the rectangle.
pub fn bottom(&self) -> f32 {
self.y + self.height
}
/// Unites two rectangles.
///
/// # Arguments
///
/// * `other` - Other rectangle to unite with.
///
/// # Returns
///
/// * `Rect` - United rectangle.
pub fn union(&self, other: &Rect) -> Rect {
let left = self.x.min(other.x);
let right = self.right().max(other.right());
let top = self.y.min(other.y);
let bottom = self.bottom().max(other.bottom());
Rect {
x: left,
y: top,
width: right - left,
height: bottom - top,
}
}
/// Intersects two rectangles.
///
/// # Arguments
///
/// * `other` - Other rectangle to intersect with.
///
/// # Returns
///
/// * `Rect` - Intersected rectangle.
pub fn intersection(&self, other: &Rect) -> Rect {
let left = self.x.max(other.x);
let right = self.right().min(other.right());
let top = self.y.max(other.y);
let bottom = (self.bottom()).min(other.bottom());
Rect {
x: left,
y: top,
width: right - left,
height: bottom - top,
}
}
/// Calculates the intersection over union of two rectangles.
///
/// # Arguments
///
/// * `other` - Other rectangle to calculate the intersection over union with.
///
/// # Returns
///
/// * `f32` - Intersection over union.
pub fn iou(&self, other: &Rect) -> f32 {
let left = self.x.max(other.x);
let right = (self.right()).min(other.right());
let top = self.y.max(other.y);
let bottom = (self.bottom()).min(other.bottom());
let intersection = (right - left).max(0.0) * (bottom - top).max(0.0);
let area_self = self.width * self.height;
let area_other = other.width * other.height;
intersection / (area_self + area_other - intersection)
}
/// Scales the rectangle.
pub fn scale(&self, x_scale: f32, y_scale: f32) -> Rect {
Rect {
x: self.x * x_scale,
y: self.y * y_scale,
width: self.width * x_scale,
height: self.height * y_scale,
}
}
/// Gets the rectangle as a tuple of (x, y, width, height).
pub fn to_xywh(&self) -> (f32, f32, f32, f32) {
(self.x, self.y, self.width, self.height)
}
}
impl Display for Rect {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{{x: {}, y: {}, width: {}, height: {}}}",
self.x, self.y, self.width, self.height
)
}
}