Expand description
A rectangle which is oriented along the x an y axis and represented by its lower left and upper right corner.
Fields
lower_left: Point<T>Lower left corner of the rectangle.
upper_right: Point<T>Upper right corner of the rectangle.
Implementations
sourceimpl<T> Rect<T> where
T: PartialOrd<T> + Copy,
impl<T> Rect<T> where
T: PartialOrd<T> + Copy,
sourcepub fn new<C>(c1: C, c2: C) -> Rect<T> where
C: Into<Point<T>>,
pub fn new<C>(c1: C, c2: C) -> Rect<T> where
C: Into<Point<T>>,
Construct the bounding box of the two points. Order does not matter.
Examples
use iron_shapes::prelude::*;
// Create a rectangle based on two corner points.
let rect1 = Rect::new(Point::new(0, 0), Point::new(1, 2));
// Any type that implements `Into<Point<T>>` can be used for the corner points.
let rect2 = Rect::new((1, 2), (0, 0));
// Ordering of the corner points does not matter.
assert_eq!(rect1, rect2);
// Even though `(0, 0)` was passed as second argument it is recognized as lower left corner.
assert_eq!(rect2.lower_left(), Point::new(0, 0));sourceimpl<T> Rect<T> where
T: Copy,
impl<T> Rect<T> where
T: Copy,
sourcepub fn lower_left(&self) -> Point<T>
pub fn lower_left(&self) -> Point<T>
Get the lower left corner.
sourcepub fn upper_left(&self) -> Point<T>
pub fn upper_left(&self) -> Point<T>
Get the upper left corner.
sourcepub fn upper_right(&self) -> Point<T>
pub fn upper_right(&self) -> Point<T>
Get the upper right corner.
sourcepub fn lower_right(&self) -> Point<T>
pub fn lower_right(&self) -> Point<T>
Get the lower right corner.
sourceimpl<T> Rect<T> where
T: PartialOrd<T> + Copy,
impl<T> Rect<T> where
T: PartialOrd<T> + Copy,
sourcepub fn contains_point(&self, p: Point<T>) -> bool
pub fn contains_point(&self, p: Point<T>) -> bool
Check if rectangle contains the point. Inclusive boundaries.
Example
use iron_shapes::prelude::*;
let rect = Rect::new((0, 0), (10, 20));
// Contains point somewhere in the center.
assert!(rect.contains_point(Point::new(5, 5)));
// Also contains point on the boundaries.
assert!(rect.contains_point(Point::new(0, 0)));
// Does not contain point outside of the rectangle.
assert!(!rect.contains_point(Point::new(10, 21)));sourcepub fn contains_point_exclusive(&self, p: Point<T>) -> bool
pub fn contains_point_exclusive(&self, p: Point<T>) -> bool
Check if rectangle contains the point. Exclusive boundaries.
Example
use iron_shapes::prelude::*;
let rect = Rect::new((0, 0), (10, 20));
// Contains point somewhere in the center.
assert!(rect.contains_point_exclusive(Point::new(5, 5)));
// Does not contain points on boundaries.
assert!(!rect.contains_point_exclusive(Point::new(0, 0)));
// Does not contain point outside of the rectangle.
assert!(!rect.contains_point_exclusive(Point::new(10, 21)));sourcepub fn contains_rectangle(&self, other: &Rect<T>) -> bool
pub fn contains_rectangle(&self, other: &Rect<T>) -> bool
Check if rectangle contains other rectangle. Inclusive boundaries.
Example
use iron_shapes::prelude::*;
let outer = Rect::new((0, 0), (2, 2));
let inner = Rect::new((0, 0), (1, 1));
assert!(outer.contains_rectangle(&inner));
assert!(!inner.contains_rectangle(&outer));sourcepub fn contains_rectangle_exclusive(&self, other: &Rect<T>) -> bool
pub fn contains_rectangle_exclusive(&self, other: &Rect<T>) -> bool
Check if rectangle contains other rectangle. Exclusive boundaries.
Example
use iron_shapes::prelude::*;
let outer = Rect::new((0, 0), (3, 3));
let inner = Rect::new((1, 1), (2, 2));
assert!(outer.contains_rectangle_exclusive(&inner));
assert!(!inner.contains_rectangle_exclusive(&outer));
let not_inner = Rect::new((0, 0), (1, 1)); // This shares the boundary with `outer`.
assert!(!outer.contains_rectangle_exclusive(¬_inner));sourcepub fn touches(&self, other: &Rect<T>) -> bool
pub fn touches(&self, other: &Rect<T>) -> bool
Test if the both rectangles touch each other, i.e. if they either share a boundary or are overlapping.
sourcepub fn intersection(&self, other: &Rect<T>) -> Option<Rect<T>>
pub fn intersection(&self, other: &Rect<T>) -> Option<Rect<T>>
Compute the boolean intersection of two rectangles.
Example
use iron_shapes::prelude::*;
// Create two overlapping rectangles.
let a = Rect::new((0, 0), (2, 2));
let b = Rect::new((1, 1), (3, 3));
// Compute the intersection.
assert_eq!(a.intersection(&b), Some(Rect::new((1, 1), (2, 2))));
// Create a non-overlapping rectangle.
let c = Rect::new((100, 100), (200, 200));
// The intersection with a non-overlapping rectangle is `None`.
assert_eq!(a.intersection(&c), None);sourceimpl<T> Rect<T> where
T: Copy + PartialOrd<T>,
impl<T> Rect<T> where
T: Copy + PartialOrd<T>,
Trait Implementations
sourceimpl<T> BoundingBox<T> for Rect<T> where
T: Copy,
impl<T> BoundingBox<T> for Rect<T> where
T: Copy,
sourcefn bounding_box(&self) -> Rect<T>
fn bounding_box(&self) -> Rect<T>
Get bounding box of rectangle (which is equal to the rectangle itself).
sourceimpl<'de, T> Deserialize<'de> for Rect<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Rect<T> where
T: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Rect<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Rect<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T> DoubledOrientedArea<T> for Rect<T> where
T: Sub<T, Output = T> + Mul<T, Output = T> + Copy + Add<T, Output = T>,
impl<T> DoubledOrientedArea<T> for Rect<T> where
T: Sub<T, Output = T> + Mul<T, Output = T> + Copy + Add<T, Output = T>,
sourcefn area_doubled_oriented(&self) -> T
fn area_doubled_oriented(&self) -> T
Calculate doubled oriented area of rectangle.
sourceimpl<'_, T> From<&'_ Rect<T>> for Polygon<T> where
T: Copy,
impl<'_, T> From<&'_ Rect<T>> for Polygon<T> where
T: Copy,
Create a polygon from a rectangle.
sourceimpl<T> From<Rect<T>> for SimpleRPolygon<T> where
T: CoordinateType,
impl<T> From<Rect<T>> for SimpleRPolygon<T> where
T: CoordinateType,
sourcefn from(r: Rect<T>) -> SimpleRPolygon<T>
fn from(r: Rect<T>) -> SimpleRPolygon<T>
Performs the conversion.
sourceimpl<T> IntoIterator for Rect<T> where
T: Copy,
impl<T> IntoIterator for Rect<T> where
T: Copy,
Iterate over all points of the rectangle. Starts with the lower left corner and iterates counter clock-wise.
sourceimpl<'a, T> IntoIterator for &'a Rect<T> where
T: Copy,
impl<'a, T> IntoIterator for &'a Rect<T> where
T: Copy,
Iterate over all points of the rectangle. Starts with the lower left corner and iterates counter clock-wise.
sourceimpl<T> MapPointwise<T> for Rect<T> where
T: Copy + PartialOrd<T>,
impl<T> MapPointwise<T> for Rect<T> where
T: Copy + PartialOrd<T>,
Point wise transformation of the two corner points.
sourceimpl<T> Serialize for Rect<T> where
T: Serialize,
impl<T> Serialize for Rect<T> where
T: Serialize,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl<T> ToPolygon<T> for Rect<T> where
T: CoordinateType,
impl<T> ToPolygon<T> for Rect<T> where
T: CoordinateType,
sourcefn to_polygon(&self) -> Polygon<T>
fn to_polygon(&self) -> Polygon<T>
Convert the geometric object into a polygon.
sourceimpl<T> TryBoundingBox<T> for Rect<T> where
T: Copy,
impl<T> TryBoundingBox<T> for Rect<T> where
T: Copy,
sourcefn try_bounding_box(&self) -> Option<Rect<T>>
fn try_bounding_box(&self) -> Option<Rect<T>>
Get bounding box of rectangle (always exists).
sourceimpl<T, Dst> TryCastCoord<T, Dst> for Rect<T> where
T: CoordinateType + NumCast,
Dst: CoordinateType + NumCast,
impl<T, Dst> TryCastCoord<T, Dst> for Rect<T> where
T: CoordinateType + NumCast,
Dst: CoordinateType + NumCast,
impl<T> Copy for Rect<T> where
T: Copy,
impl<T> Eq for Rect<T> where
T: PartialEq<T>,
Auto Trait Implementations
impl<T> RefUnwindSafe for Rect<T> where
T: RefUnwindSafe,
impl<T> Send for Rect<T> where
T: Send,
impl<T> Sync for Rect<T> where
T: Sync,
impl<T> Unpin for Rect<T> where
T: Unpin,
impl<T> UnwindSafe for Rect<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
impl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
sourcefn rotate_ortho(&self, a: Angle) -> S
fn rotate_ortho(&self, a: Angle) -> S
Rotate the geometrical shape by a multiple of 90 degrees.
sourceimpl<S, T> Scale<T> for S where
T: Copy + Mul<T, Output = T>,
S: MapPointwise<T>,
impl<S, T> Scale<T> for S where
T: Copy + Mul<T, Output = T>,
S: MapPointwise<T>,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more