pub struct Rect {
pub min: Point,
pub max: Point,
}
Expand description
A rectangle defined by its minimum and maximum points.
Fields§
§min: Point
The minimum point of the rectangle.
max: Point
The maximum point of the rectangle.
Implementations§
Source§impl Rect
impl Rect
Sourcepub const fn new(min: Point, max: Point) -> Rect
pub const fn new(min: Point, max: Point) -> Rect
Create a new rectangle with the given minimum and maximum points.
Sourcepub fn min_size(min: Point, size: Size) -> Rect
pub fn min_size(min: Point, size: Size) -> Rect
Create a new rectangle with the given minimum point and size.
Sourcepub fn max_size(max: Point, size: Size) -> Rect
pub fn max_size(max: Point, size: Size) -> Rect
Create a new rectangle with the given maximum point and size.
Sourcepub fn center_size(center: Point, size: Size) -> Rect
pub fn center_size(center: Point, size: Size) -> Rect
Create a new rectangle with the given center point and size.
Sourcepub fn top_center(self) -> Point
pub fn top_center(self) -> Point
Get the top center point of the rectangle.
Sourcepub fn center_left(self) -> Point
pub fn center_left(self) -> Point
Get the left center point of the rectangle.
Sourcepub fn center_right(self) -> Point
pub fn center_right(self) -> Point
Get the right center point of the rectangle.
Sourcepub fn bottom_left(self) -> Point
pub fn bottom_left(self) -> Point
Get the bottom left point of the rectangle.
Sourcepub fn bottom_center(self) -> Point
pub fn bottom_center(self) -> Point
Get the bottom center point of the rectangle.
Sourcepub fn bottom_right(self) -> Point
pub fn bottom_right(self) -> Point
Get the bottom right point of the rectangle.
Sourcepub fn is_infinite(self) -> bool
pub fn is_infinite(self) -> bool
Check if the rectangle is infinite.
Sourcepub fn contains(self, point: Point) -> bool
pub fn contains(self, point: Point) -> bool
Compute whether the rectangle contains the given point.
Sourcepub fn contain(self, point: Point) -> Point
pub fn contain(self, point: Point) -> Point
Compute the closest point in the rectangle to the given point.
Sourcepub fn try_intersection(self, other: Rect) -> Option<Rect>
pub fn try_intersection(self, other: Rect) -> Option<Rect>
Compute the intersection of the rectangle with the given rectangle.
Sourcepub fn intersection(self, other: Rect) -> Rect
pub fn intersection(self, other: Rect) -> Rect
Compute the intersection of the rectangle with the given rectangle.
If the rectangles do not intersect Rect::ZERO
is returned.
Sourcepub fn intersects(self, other: Rect) -> bool
pub fn intersects(self, other: Rect) -> bool
Check if the rectangle intersects the given rectangle.
Trait Implementations§
Source§impl AddAssign<Size> for Rect
impl AddAssign<Size> for Rect
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
+=
operation. Read moreSource§impl AddAssign<Vector> for Rect
impl AddAssign<Vector> for Rect
Source§fn add_assign(&mut self, rhs: Vector)
fn add_assign(&mut self, rhs: Vector)
+=
operation. Read moreSource§impl BitAndAssign for Rect
impl BitAndAssign for Rect
Source§fn bitand_assign(&mut self, rhs: Rect)
fn bitand_assign(&mut self, rhs: Rect)
&=
operation. Read moreSource§impl SubAssign<Size> for Rect
impl SubAssign<Size> for Rect
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
-=
operation. Read moreSource§impl SubAssign<Vector> for Rect
impl SubAssign<Vector> for Rect
Source§fn sub_assign(&mut self, rhs: Vector)
fn sub_assign(&mut self, rhs: Vector)
-=
operation. Read more