pub struct Rectangle { /* private fields */ }
Expand description
A Rectangle
is normally expressed as a top-left corner and a size
§Examples
let rectangle = Rectangle::new((0., 5.),(10., 7.));
assert_eq!(rectangle.x(), 0.);
assert_eq!(rectangle.y(), 5.);
assert_eq!(rectangle.width(), 10.);
assert_eq!(rectangle.height(), 7.);
Implementations§
Source§impl Rectangle
impl Rectangle
Sourcepub fn new(position: impl Into<Point>, size: impl Into<Size>) -> Self
pub fn new(position: impl Into<Point>, size: impl Into<Size>) -> Self
Create a new rectangle with the given parameters.
Sourcepub fn set_position(&mut self, position: impl Into<Point>)
pub fn set_position(&mut self, position: impl Into<Point>)
Sets position.
Sourcepub fn set_height(&mut self, height: impl Into<f64>)
pub fn set_height(&mut self, height: impl Into<f64>)
Sets the height.
Sourcepub fn set_size(&mut self, width: impl Into<f64>, height: impl Into<f64>)
pub fn set_size(&mut self, width: impl Into<f64>, height: impl Into<f64>)
Sets the size with width and height.
Sourcepub fn contains(&self, point: impl Into<Point>) -> bool
pub fn contains(&self, point: impl Into<Point>) -> bool
Checks if this rect contains the given point
.
Sourcepub fn contains_rect(&self, rect: &Rectangle) -> bool
pub fn contains_rect(&self, rect: &Rectangle) -> bool
Checks if this rect contains the given rect
.
Sourcepub fn intersects(&self, rect: &Rectangle) -> bool
pub fn intersects(&self, rect: &Rectangle) -> bool
Checks if this rect intersects with the given rect
.
Sourcepub fn join_with_rectangle(&mut self, other: &Rectangle)
pub fn join_with_rectangle(&mut self, other: &Rectangle)
Joins this rectangle with another one, the result is a rectangle in which the two parents fit.
Sourcepub fn join_with_point(&mut self, point: &Point)
pub fn join_with_point(&mut self, point: &Point)
Extends this rectangle to cover the given point.
Trait Implementations§
impl Copy for Rectangle
impl StructuralPartialEq for Rectangle
Auto Trait Implementations§
impl Freeze for Rectangle
impl RefUnwindSafe for Rectangle
impl Send for Rectangle
impl Sync for Rectangle
impl Unpin for Rectangle
impl UnwindSafe for Rectangle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more