Struct TypedRect

Source
#[repr(C)]
pub struct TypedRect<T, U = UnknownUnit> { pub origin: TypedPoint2D<T, U>, pub size: TypedSize2D<T, U>, }
Expand description

A 2d Rectangle optionally tagged with a unit.

Fields§

§origin: TypedPoint2D<T, U>§size: TypedSize2D<T, U>

Implementations§

Source§

impl<T, U> TypedRect<T, U>

Source

pub fn new( origin: TypedPoint2D<T, U>, size: TypedSize2D<T, U>, ) -> TypedRect<T, U>

Constructor.

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + Zero,

Source

pub fn from_size(size: TypedSize2D<T, U>) -> TypedRect<T, U>

Creates a rect of the given size, at offset zero.

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + Clone + Zero + PartialOrd + PartialEq + Add<Output = T> + Sub<Output = T>,

Source

pub fn intersects(&self, other: &TypedRect<T, U>) -> bool

Source

pub fn max_x(&self) -> T

Source

pub fn min_x(&self) -> T

Source

pub fn max_y(&self) -> T

Source

pub fn min_y(&self) -> T

Source

pub fn max_x_typed(&self) -> Length<T, U>

Source

pub fn min_x_typed(&self) -> Length<T, U>

Source

pub fn max_y_typed(&self) -> Length<T, U>

Source

pub fn min_y_typed(&self) -> Length<T, U>

Source

pub fn x_range(&self) -> Range<T>

Source

pub fn y_range(&self) -> Range<T>

Source

pub fn intersection(&self, other: &TypedRect<T, U>) -> Option<TypedRect<T, U>>

Source

pub fn translate(&self, by: &TypedVector2D<T, U>) -> TypedRect<T, U>

Returns the same rectangle, translated by a vector.

Source

pub fn contains(&self, other: &TypedPoint2D<T, U>) -> bool

Returns true if this rectangle contains the point. Points are considered in the rectangle if they are on the left or top edge, but outside if they are on the right or bottom edge.

Source

pub fn contains_rect(&self, rect: &TypedRect<T, U>) -> bool

Returns true if this rectangle contains the interior of rect. Always returns true if rect is empty, and always returns false if rect is nonempty but this rectangle is empty.

Source

pub fn inflate(&self, width: T, height: T) -> TypedRect<T, U>

Source

pub fn inflate_typed( &self, width: Length<T, U>, height: Length<T, U>, ) -> TypedRect<T, U>

Source

pub fn top_right(&self) -> TypedPoint2D<T, U>

Source

pub fn bottom_left(&self) -> TypedPoint2D<T, U>

Source

pub fn bottom_right(&self) -> TypedPoint2D<T, U>

Source

pub fn to_box2d(&self) -> TypedBox2D<T, U>

Source

pub fn translate_by_size(&self, size: &TypedSize2D<T, U>) -> TypedRect<T, U>

Source

pub fn inner_rect(&self, offsets: TypedSideOffsets2D<T, U>) -> TypedRect<T, U>

Calculate the size and position of an inner rectangle.

Subtracts the side offsets from all sides. The horizontal and vertical offsets must not be larger than the original side length.

Source

pub fn outer_rect(&self, offsets: TypedSideOffsets2D<T, U>) -> TypedRect<T, U>

Calculate the size and position of an outer rectangle.

Add the offsets to all sides. The expanded rectangle is returned.

Source

pub fn from_points<I>(points: I) -> TypedRect<T, U>
where I: IntoIterator, <I as IntoIterator>::Item: Borrow<TypedPoint2D<T, U>>,

Returns the smallest rectangle defined by the top/bottom/left/right-most points provided as parameter.

Note: This function has a behavior that can be surprising because the right-most and bottom-most points are exactly on the edge of the rectangle while the contains function is has exclusive semantic on these edges. This means that the right-most and bottom-most points provided to from_points will count as not contained by the rect. This behavior may change in the future.

Source§

impl<T, U> TypedRect<T, U>
where T: One + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Copy,

Source

pub fn lerp(&self, other: TypedRect<T, U>, t: T) -> TypedRect<T, U>

Linearly interpolate between this rectangle and another rectangle.

t is expected to be between zero and one.

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + One + Add<Output = T> + Div<Output = T>,

Source

pub fn center(&self) -> TypedPoint2D<T, U>

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + Clone + PartialOrd + Add<Output = T> + Sub<Output = T> + Zero,

Source

pub fn union(&self, other: &TypedRect<T, U>) -> TypedRect<T, U>

Source§

impl<T, U> TypedRect<T, U>

Source

pub fn scale<S>(&self, x: S, y: S) -> TypedRect<T, U>
where S: Copy, T: Copy + Clone + Mul<S, Output = T>,

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + Clone + Mul<Output = T>,

Source

pub fn area(&self) -> T

Source§

impl<T, U> TypedRect<T, U>
where T: Copy + PartialEq + Zero,

Source

pub fn zero() -> TypedRect<T, U>

Constructor, setting all sides to zero.

Source

pub fn is_empty(&self) -> bool

Returns true if the size is zero, regardless of the origin’s value.

Source§

impl<T, Unit> TypedRect<T, Unit>
where T: Copy,

Source

pub fn to_untyped(&self) -> TypedRect<T>

Drop the units, preserving only the numeric value.

Source

pub fn from_untyped(r: &TypedRect<T>) -> TypedRect<T, Unit>

Tag a unitless value with units.

Source§

impl<T0, Unit> TypedRect<T0, Unit>
where T0: NumCast + Copy,

Source

pub fn cast<T1>(&self) -> TypedRect<T1, Unit>
where T1: NumCast + Copy,

Cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), round_in or round_out() before casting.

Source

pub fn try_cast<T1>(&self) -> Option<TypedRect<T1, Unit>>
where T1: NumCast + Copy,

Fallible cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), round_in or round_out() before casting.

Source§

impl<T, U> TypedRect<T, U>
where T: Floor + Ceil + Round + Add<Output = T> + Sub<Output = T>,

Source

pub fn round(&self) -> TypedRect<T, U>

Return a rectangle with edges rounded to integer coordinates, such that the returned rectangle has the same set of pixel centers as the original one. Edges at offset 0.5 round up. Suitable for most places where integral device coordinates are needed, but note that any translation should be applied first to avoid pixel rounding errors. Note that this is not rounding to nearest integer if the values are negative. They are always rounding as floor(n + 0.5).

Source

pub fn round_in(&self) -> TypedRect<T, U>

Return a rectangle with edges rounded to integer coordinates, such that the original rectangle contains the resulting rectangle.

Source

pub fn round_out(&self) -> TypedRect<T, U>

Return a rectangle with edges rounded to integer coordinates, such that the original rectangle is contained in the resulting rectangle.

Source§

impl<T, Unit> TypedRect<T, Unit>
where T: NumCast + Copy,

Source

pub fn to_f32(&self) -> TypedRect<f32, Unit>

Cast into an f32 rectangle.

Source

pub fn to_f64(&self) -> TypedRect<f64, Unit>

Cast into an f64 rectangle.

Source

pub fn to_usize(&self) -> TypedRect<usize, Unit>

Cast into an usize rectangle, truncating decimals if any.

When casting from floating point rectangles, it is worth considering whether to round(), round_in() or round_out() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_u32(&self) -> TypedRect<u32, Unit>

Cast into an u32 rectangle, truncating decimals if any.

When casting from floating point rectangles, it is worth considering whether to round(), round_in() or round_out() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_i32(&self) -> TypedRect<i32, Unit>

Cast into an i32 rectangle, truncating decimals if any.

When casting from floating point rectangles, it is worth considering whether to round(), round_in() or round_out() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_i64(&self) -> TypedRect<i64, Unit>

Cast into an i64 rectangle, truncating decimals if any.

When casting from floating point rectangles, it is worth considering whether to round(), round_in() or round_out() before the cast in order to obtain the desired conversion behavior.

Trait Implementations§

Source§

impl<T, U> Clone for TypedRect<T, U>
where T: Copy,

Source§

fn clone(&self) -> TypedRect<T, U>

Returns a duplicate 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<T, U> Debug for TypedRect<T, U>
where T: Debug,

Source§

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

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

impl<T, U> Default for TypedRect<T, U>
where T: Default,

Source§

fn default() -> TypedRect<T, U>

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

impl<T, U> Display for TypedRect<T, U>
where T: Display,

Source§

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

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

impl<T, U> Div<T> for TypedRect<T, U>
where T: Copy + Div<Output = T>,

Source§

type Output = TypedRect<T, U>

The resulting type after applying the / operator.
Source§

fn div(self, scale: T) -> TypedRect<T, U>

Performs the / operation. Read more
Source§

impl<T, U1, U2> Div<TypedScale<T, U1, U2>> for TypedRect<T, U2>
where T: Copy + Div<Output = T>,

Source§

type Output = TypedRect<T, U1>

The resulting type after applying the / operator.
Source§

fn div(self, scale: TypedScale<T, U1, U2>) -> TypedRect<T, U1>

Performs the / operation. Read more
Source§

impl<'l> From<&'l TypedRect<f32>> for Variant

Source§

fn from(val: &'l TypedRect<f32>) -> Variant

Converts to this type from the input type.
Source§

impl<T, U> From<TypedSize2D<T, U>> for TypedRect<T, U>
where T: Copy + Zero,

Source§

fn from(size: TypedSize2D<T, U>) -> TypedRect<T, U>

Converts to this type from the input type.
Source§

impl<T, U> Hash for TypedRect<T, U>
where T: Hash,

Source§

fn hash<H>(&self, h: &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<T, U> Mul<T> for TypedRect<T, U>
where T: Copy + Mul<Output = T>,

Source§

type Output = TypedRect<T, U>

The resulting type after applying the * operator.
Source§

fn mul(self, scale: T) -> TypedRect<T, U>

Performs the * operation. Read more
Source§

impl<T, U1, U2> Mul<TypedScale<T, U1, U2>> for TypedRect<T, U1>
where T: Copy + Mul<Output = T>,

Source§

type Output = TypedRect<T, U2>

The resulting type after applying the * operator.
Source§

fn mul(self, scale: TypedScale<T, U1, U2>) -> TypedRect<T, U2>

Performs the * operation. Read more
Source§

impl<T, U> PartialEq for TypedRect<T, U>
where T: PartialEq,

Source§

fn eq(&self, other: &TypedRect<T, U>) -> 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<T, U> Copy for TypedRect<T, U>
where T: Copy,

Source§

impl<T, U> Eq for TypedRect<T, U>
where T: Eq,

Auto Trait Implementations§

§

impl<T, U> Freeze for TypedRect<T, U>
where T: Freeze,

§

impl<T, U> RefUnwindSafe for TypedRect<T, U>

§

impl<T, U> Send for TypedRect<T, U>
where T: Send, U: Send,

§

impl<T, U> Sync for TypedRect<T, U>
where T: Sync, U: Sync,

§

impl<T, U> Unpin for TypedRect<T, U>
where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for TypedRect<T, U>
where T: UnwindSafe, U: UnwindSafe,

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, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.