[−][src]Struct euclid::TypedBox2D
An axis aligned rectangle represented by its minimum and maximum coordinates.
Fields
min: TypedPoint2D<T, U>
max: TypedPoint2D<T, U>
Methods
impl<T, U> TypedBox2D<T, U>
[src]
pub fn new(min: TypedPoint2D<T, U>, max: TypedPoint2D<T, U>) -> Self
[src]
Constructor.
impl<T, U> TypedBox2D<T, U> where
T: Copy + Zero + PartialOrd,
[src]
T: Copy + Zero + PartialOrd,
pub fn from_size(size: TypedSize2D<T, U>) -> Self
[src]
Creates a Box2D of the given size, at offset zero.
impl<T, U> TypedBox2D<T, U> where
T: Copy + PartialOrd,
[src]
T: Copy + PartialOrd,
pub fn is_negative(&self) -> bool
[src]
Returns true if the box has a negative area.
The common interpretation for a negative box is to consider it empty. It can be obtained by calculating the intersection of two boxes that do not intersect.
pub fn is_empty_or_negative(&self) -> bool
[src]
Returns true if the size is zero or negative.
pub fn intersects(&self, other: &Self) -> bool
[src]
Returns true if the two boxes intersect.
pub fn intersection(&self, other: &Self) -> Self
[src]
Computes the intersection of two boxes.
The result is a negative box if the boxes do not intersect.
pub fn try_intersection(&self, other: &Self) -> Option<Self>
[src]
Computes the intersection of two boxes, returning None
if the boxes do not intersect.
impl<T, U> TypedBox2D<T, U> where
T: Copy + Add<T, Output = T>,
[src]
T: Copy + Add<T, Output = T>,
pub fn translate(&self, by: &TypedVector2D<T, U>) -> Self
[src]
Returns the same box, translated by a vector.
impl<T, U> TypedBox2D<T, U> where
T: Copy + PartialOrd + Zero,
[src]
T: Copy + PartialOrd + Zero,
pub fn contains(&self, p: &TypedPoint2D<T, U>) -> bool
[src]
Returns true if this box contains the point. Points are considered in the box if they are on the front, left or top faces, but outside if they are on the back, right or bottom faces.
impl<T, U> TypedBox2D<T, U> where
T: Copy + PartialOrd + Zero + Sub<T, Output = T>,
[src]
T: Copy + PartialOrd + Zero + Sub<T, Output = T>,
pub fn contains_box(&self, other: &Self) -> bool
[src]
Returns true if this box contains the interior of the other box. Always returns true if other is empty, and always returns false if other is nonempty but this box is empty.
impl<T, U> TypedBox2D<T, U> where
T: Copy + Sub<T, Output = T>,
[src]
T: Copy + Sub<T, Output = T>,
impl<T, U> TypedBox2D<T, U> where
T: Copy + PartialEq + Add<T, Output = T> + Sub<T, Output = T>,
[src]
T: Copy + PartialEq + Add<T, Output = T> + Sub<T, Output = T>,
pub fn inflate(&self, width: T, height: T) -> Self
[src]
Inflates the box by the specified sizes on each side respectively.
impl<T, U> TypedBox2D<T, U> where
T: Copy + Zero + PartialOrd + Add<T, Output = T> + Sub<T, Output = T>,
[src]
T: Copy + Zero + PartialOrd + Add<T, Output = T> + Sub<T, Output = T>,
pub fn inner_box(&self, offsets: TypedSideOffsets2D<T, U>) -> Self
[src]
Calculate the size and position of an inner box.
Subtracts the side offsets from all sides. The horizontal, vertical and applicate offsets must not be larger than the original side length.
pub fn outer_box(&self, offsets: TypedSideOffsets2D<T, U>) -> Self
[src]
Calculate the b and position of an outer box.
Add the offsets to all sides. The expanded box is returned.
impl<T, U> TypedBox2D<T, U> where
T: Copy + Zero + PartialOrd,
[src]
T: Copy + Zero + PartialOrd,
pub fn from_points<I>(points: I) -> Self where
I: IntoIterator,
I::Item: Borrow<TypedPoint2D<T, U>>,
[src]
I: IntoIterator,
I::Item: Borrow<TypedPoint2D<T, U>>,
Returns the smallest box containing all of the provided points.
impl<T, U> TypedBox2D<T, U> where
T: Copy + One + Add<Output = T> + Sub<Output = T> + Mul<Output = T>,
[src]
T: Copy + One + Add<Output = T> + Sub<Output = T> + Mul<Output = T>,
pub fn lerp(&self, other: Self, t: T) -> Self
[src]
Linearly interpolate between this box and another box.
t
is expected to be between zero and one.
impl<T, U> TypedBox2D<T, U> where
T: Copy + One + Add<Output = T> + Div<Output = T>,
[src]
T: Copy + One + Add<Output = T> + Div<Output = T>,
pub fn center(&self) -> TypedPoint2D<T, U>
[src]
impl<T, U> TypedBox2D<T, U> where
T: Copy + PartialOrd,
[src]
T: Copy + PartialOrd,
impl<T, U> TypedBox2D<T, U> where
T: Copy,
[src]
T: Copy,
impl<T, U> TypedBox2D<T, U> where
T: Copy + Mul<T, Output = T> + Sub<T, Output = T>,
[src]
T: Copy + Mul<T, Output = T> + Sub<T, Output = T>,
impl<T, U> TypedBox2D<T, U> where
T: Copy + Zero,
[src]
T: Copy + Zero,
impl<T, U> TypedBox2D<T, U> where
T: PartialEq,
[src]
T: PartialEq,
impl<T, Unit> TypedBox2D<T, Unit> where
T: Copy,
[src]
T: Copy,
pub fn to_untyped(&self) -> Box2D<T>
[src]
Drop the units, preserving only the numeric value.
pub fn from_untyped(c: &Box2D<T>) -> TypedBox2D<T, Unit>
[src]
Tag a unitless value with units.
impl<T0, Unit> TypedBox2D<T0, Unit> where
T0: NumCast + Copy,
[src]
T0: NumCast + Copy,
pub fn cast<T1: NumCast + Copy>(&self) -> TypedBox2D<T1, Unit>
[src]
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.
pub fn try_cast<T1: NumCast + Copy>(&self) -> Option<TypedBox2D<T1, Unit>>
[src]
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.
impl<T, U> TypedBox2D<T, U> where
T: Round,
[src]
T: Round,
pub fn round(&self) -> Self
[src]
Return a box with edges rounded to integer coordinates, such that the returned box has the same set of pixel centers as the original one. Values equal to 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).
impl<T, U> TypedBox2D<T, U> where
T: Floor + Ceil,
[src]
T: Floor + Ceil,
pub fn round_in(&self) -> Self
[src]
Return a box with faces/edges rounded to integer coordinates, such that the original box contains the resulting box.
pub fn round_out(&self) -> Self
[src]
Return a box with faces/edges rounded to integer coordinates, such that the original box is contained in the resulting box.
impl<T: NumCast + Copy, Unit> TypedBox2D<T, Unit>
[src]
pub fn to_f32(&self) -> TypedBox2D<f32, Unit>
[src]
Cast into an f32
box.
pub fn to_f64(&self) -> TypedBox2D<f64, Unit>
[src]
Cast into an f64
box.
pub fn to_usize(&self) -> TypedBox2D<usize, Unit>
[src]
Cast into an usize
box, truncating decimals if any.
When casting from floating point boxes, it is worth considering whether
to round()
, round_in()
or round_out()
before the cast in order to
obtain the desired conversion behavior.
pub fn to_u32(&self) -> TypedBox2D<u32, Unit>
[src]
Cast into an u32
box, truncating decimals if any.
When casting from floating point boxes, it is worth considering whether
to round()
, round_in()
or round_out()
before the cast in order to
obtain the desired conversion behavior.
pub fn to_i32(&self) -> TypedBox2D<i32, Unit>
[src]
Cast into an i32
box, truncating decimals if any.
When casting from floating point boxes, it is worth considering whether
to round()
, round_in()
or round_out()
before the cast in order to
obtain the desired conversion behavior.
pub fn to_i64(&self) -> TypedBox2D<i64, Unit>
[src]
Cast into an i64
box, truncating decimals if any.
When casting from floating point boxes, 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
impl<T: PartialEq, U> PartialEq<TypedBox2D<T, U>> for TypedBox2D<T, U>
[src]
fn eq(&self, other: &Self) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<T: Eq, U> Eq for TypedBox2D<T, U>
[src]
impl<T: Hash, U> Hash for TypedBox2D<T, U>
[src]
fn hash<H: Hasher>(&self, h: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<T: Display, U> Display for TypedBox2D<T, U>
[src]
impl<T: Debug, U> Debug for TypedBox2D<T, U>
[src]
impl<T, U> Mul<T> for TypedBox2D<T, U> where
T: Copy + Mul<T, Output = T>,
[src]
T: Copy + Mul<T, Output = T>,
type Output = Self
The resulting type after applying the *
operator.
fn mul(self, scale: T) -> Self
[src]
impl<T, U1, U2> Mul<TypedScale<T, U1, U2>> for TypedBox2D<T, U1> where
T: Copy + Mul<T, Output = T>,
[src]
T: Copy + Mul<T, Output = T>,
type Output = TypedBox2D<T, U2>
The resulting type after applying the *
operator.
fn mul(self, scale: TypedScale<T, U1, U2>) -> TypedBox2D<T, U2>
[src]
impl<T, U> Div<T> for TypedBox2D<T, U> where
T: Copy + Div<T, Output = T>,
[src]
T: Copy + Div<T, Output = T>,
type Output = Self
The resulting type after applying the /
operator.
fn div(self, scale: T) -> Self
[src]
impl<T, U1, U2> Div<TypedScale<T, U1, U2>> for TypedBox2D<T, U2> where
T: Copy + Div<T, Output = T>,
[src]
T: Copy + Div<T, Output = T>,
type Output = TypedBox2D<T, U1>
The resulting type after applying the /
operator.
fn div(self, scale: TypedScale<T, U1, U2>) -> TypedBox2D<T, U1>
[src]
impl<T: Copy, U> Copy for TypedBox2D<T, U>
[src]
impl<T, U> From<TypedSize2D<T, U>> for TypedBox2D<T, U> where
T: Copy + Zero + PartialOrd,
[src]
T: Copy + Zero + PartialOrd,
fn from(b: TypedSize2D<T, U>) -> Self
[src]
impl<T: Copy, U> Clone for TypedBox2D<T, U>
[src]
Auto Trait Implementations
impl<T, U> Unpin for TypedBox2D<T, U> where
T: Unpin,
U: Unpin,
T: Unpin,
U: Unpin,
impl<T, U> Send for TypedBox2D<T, U> where
T: Send,
U: Send,
T: Send,
U: Send,
impl<T, U> Sync for TypedBox2D<T, U> where
T: Sync,
U: Sync,
T: Sync,
U: Sync,
impl<T, U> UnwindSafe for TypedBox2D<T, U> where
T: UnwindSafe,
U: UnwindSafe,
T: UnwindSafe,
U: UnwindSafe,
impl<T, U> RefUnwindSafe for TypedBox2D<T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
T: RefUnwindSafe,
U: RefUnwindSafe,
Blanket Implementations
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,