ori::prelude

Struct Rect

Source
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

Source

pub const ZERO: Rect = _

A rectangle with zero area.

Source

pub const fn new(min: Point, max: Point) -> Rect

Create a new rectangle with the given minimum and maximum points.

Source

pub fn min_size(min: Point, size: Size) -> Rect

Create a new rectangle with the given minimum point and size.

Source

pub fn max_size(max: Point, size: Size) -> Rect

Create a new rectangle with the given maximum point and size.

Source

pub fn center_size(center: Point, size: Size) -> Rect

Create a new rectangle with the given center point and size.

Source

pub fn round(self) -> Rect

Round the rectangle’s minimum point down and its maximum point up.

Source

pub fn clamp(self, other: impl Into<Rect>) -> Rect

Clamp the rectangle to the given rectangle.

Source

pub fn offset(self) -> Vector

Get the offset of the rectangle.

Source

pub fn size(self) -> Size

Get the size of the rectangle.

Source

pub fn width(self) -> f32

Get the width of the rectangle.

Source

pub fn height(self) -> f32

Get the height of the rectangle.

Source

pub fn area(self) -> f32

Get the area of the rectangle.

Source

pub fn top_left(self) -> Point

Get the top left point of the rectangle.

Source

pub fn top_center(self) -> Point

Get the top center point of the rectangle.

Source

pub fn top_right(self) -> Point

Get the top right point of the rectangle.

Source

pub fn center_left(self) -> Point

Get the left center point of the rectangle.

Source

pub fn center(self) -> Point

Get the center point of the rectangle.

Source

pub fn center_right(self) -> Point

Get the right center point of the rectangle.

Source

pub fn bottom_left(self) -> Point

Get the bottom left point of the rectangle.

Source

pub fn bottom_center(self) -> Point

Get the bottom center point of the rectangle.

Source

pub fn bottom_right(self) -> Point

Get the bottom right point of the rectangle.

Source

pub fn top(self) -> f32

Get the top edge of the rectangle.

Source

pub fn left(self) -> f32

Get the left edge of the rectangle.

Source

pub fn right(self) -> f32

Get the right edge of the rectangle.

Source

pub fn bottom(self) -> f32

Get the bottom edge of the rectangle.

Source

pub fn is_finite(self) -> bool

Check if the rectangle is finite.

Source

pub fn is_infinite(self) -> bool

Check if the rectangle is infinite.

Source

pub fn shrink(self, padding: f32) -> Rect

Shrink the rectangle by the given amount.

Source

pub fn expand(self, padding: f32) -> Rect

Expand the rectangle by the given amount.

Source

pub fn contains(self, point: Point) -> bool

Compute whether the rectangle contains the given point.

Source

pub fn contain(self, point: Point) -> Point

Compute the closest point in the rectangle to the given point.

Source

pub fn include(self, point: Point) -> Rect

Expand the rectangle to contain the given point.

Source

pub fn try_intersection(self, other: Rect) -> Option<Rect>

Compute the intersection of the rectangle with the given rectangle.

Source

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.

Source

pub fn intersects(self, other: Rect) -> bool

Check if the rectangle intersects the given rectangle.

Source

pub fn union(self, other: Rect) -> Rect

Compute the union of the rectangle with the given rectangle.

Source

pub fn transform(self, transform: Affine) -> Rect

Transform the rectangle by the given affine transform.

Trait Implementations§

Source§

impl Add<Size> for Rect

Source§

type Output = Rect

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Size) -> <Rect as Add<Size>>::Output

Performs the + operation. Read more
Source§

impl Add<Vector> for Rect

Source§

type Output = Rect

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Vector) -> <Rect as Add<Vector>>::Output

Performs the + operation. Read more
Source§

impl AddAssign<Size> for Rect

Source§

fn add_assign(&mut self, rhs: Size)

Performs the += operation. Read more
Source§

impl AddAssign<Vector> for Rect

Source§

fn add_assign(&mut self, rhs: Vector)

Performs the += operation. Read more
Source§

impl BitAnd for Rect

Source§

type Output = Rect

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Rect) -> <Rect as BitAnd>::Output

Performs the & operation. Read more
Source§

impl BitAndAssign for Rect

Source§

fn bitand_assign(&mut self, rhs: Rect)

Performs the &= operation. Read more
Source§

impl Clone for Rect

Source§

fn clone(&self) -> Rect

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Rect

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Rect

Source§

fn default() -> Rect

Returns the “default value” for a type. Read more
Source§

impl From<[f32; 4]> for Rect

Source§

fn from(_: [f32; 4]) -> Rect

Converts to this type from the input type.
Source§

impl From<Rect> for Curve

Source§

fn from(rect: Rect) -> Curve

Converts to this type from the input type.
Source§

impl From<Rect> for Mask

Source§

fn from(value: Rect) -> Mask

Converts to this type from the input type.
Source§

impl From<Size> for Rect

Source§

fn from(size: Size) -> Rect

Converts to this type from the input type.
Source§

impl Hash for Rect

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Rect

Source§

fn eq(&self, other: &Rect) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Sub<Size> for Rect

Source§

type Output = Rect

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Size) -> <Rect as Sub<Size>>::Output

Performs the - operation. Read more
Source§

impl Sub<Vector> for Rect

Source§

type Output = Rect

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Vector) -> <Rect as Sub<Vector>>::Output

Performs the - operation. Read more
Source§

impl SubAssign<Size> for Rect

Source§

fn sub_assign(&mut self, rhs: Size)

Performs the -= operation. Read more
Source§

impl SubAssign<Vector> for Rect

Source§

fn sub_assign(&mut self, rhs: Vector)

Performs the -= operation. Read more
Source§

impl Copy for Rect

Source§

impl StructuralPartialEq for Rect

Auto Trait Implementations§

§

impl Freeze for Rect

§

impl RefUnwindSafe for Rect

§

impl Send for Rect

§

impl Sync for Rect

§

impl Unpin for Rect

§

impl UnwindSafe for Rect

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more