[−][src]Struct euclid::TypedBox3D
An axis aligned 3D box represented by its minimum and maximum coordinates.
Fields
min: TypedPoint3D<T, U>
max: TypedPoint3D<T, U>
Methods
impl<T, U> TypedBox3D<T, U>
[src]
pub fn new(min: TypedPoint3D<T, U>, max: TypedPoint3D<T, U>) -> Self
[src]
Constructor.
impl<T, U> TypedBox3D<T, U> where
T: Copy + Zero + PartialOrd,
[src]
T: Copy + Zero + PartialOrd,
pub fn from_size(size: TypedSize3D<T, U>) -> Self
[src]
Creates a Box3D of the given size, at offset zero.
impl<T, U> TypedBox3D<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 volume.
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]
pub fn try_intersection(&self, other: &Self) -> Option<Self>
[src]
pub fn intersection(&self, other: &Self) -> Self
[src]
impl<T, U> TypedBox3D<T, U> where
T: Copy + Add<T, Output = T>,
[src]
T: Copy + Add<T, Output = T>,
pub fn translate(&self, by: &TypedVector3D<T, U>) -> Self
[src]
Returns the same box3d, translated by a vector.
impl<T, U> TypedBox3D<T, U> where
T: Copy + PartialOrd + Zero,
[src]
T: Copy + PartialOrd + Zero,
pub fn contains(&self, other: &TypedPoint3D<T, U>) -> bool
[src]
Returns true if this box3d contains the point. Points are considered in the box3d 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> TypedBox3D<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 box3d contains the interior of the other box3d. Always returns true if other is empty, and always returns false if other is nonempty but this box3d is empty.
impl<T, U> TypedBox3D<T, U> where
T: Copy + Sub<T, Output = T>,
[src]
T: Copy + Sub<T, Output = T>,
impl<T, U> TypedBox3D<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, depth: T) -> Self
[src]
Inflates the box by the specified sizes on each side respectively.
pub fn inflate_typed(
&self,
width: Length<T, U>,
height: Length<T, U>,
depth: Length<T, U>
) -> Self
[src]
&self,
width: Length<T, U>,
height: Length<T, U>,
depth: Length<T, U>
) -> Self
impl<T, U> TypedBox3D<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<TypedPoint3D<T, U>>,
[src]
I: IntoIterator,
I::Item: Borrow<TypedPoint3D<T, U>>,
Returns the smallest box containing all of the provided points.
impl<T, U> TypedBox3D<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 box3d and another box3d.
t
is expected to be between zero and one.
impl<T, U> TypedBox3D<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) -> TypedPoint3D<T, U>
[src]
impl<T, U> TypedBox3D<T, U> where
T: Copy + Clone + PartialOrd + Add<T, Output = T> + Sub<T, Output = T> + Zero,
[src]
T: Copy + Clone + PartialOrd + Add<T, Output = T> + Sub<T, Output = T> + Zero,
impl<T, U> TypedBox3D<T, U> where
T: Copy,
[src]
T: Copy,
impl<T, U> TypedBox3D<T, U> where
T: Copy + Mul<T, Output = T> + Sub<T, Output = T>,
[src]
T: Copy + Mul<T, Output = T> + Sub<T, Output = T>,
pub fn volume(&self) -> T
[src]
pub fn xy_area(&self) -> T
[src]
pub fn yz_area(&self) -> T
[src]
pub fn xz_area(&self) -> T
[src]
impl<T, U> TypedBox3D<T, U> where
T: Copy + Zero,
[src]
T: Copy + Zero,
impl<T, U> TypedBox3D<T, U> where
T: PartialEq,
[src]
T: PartialEq,
impl<T, Unit> TypedBox3D<T, Unit> where
T: Copy,
[src]
T: Copy,
pub fn to_untyped(&self) -> Box3D<T>
[src]
Drop the units, preserving only the numeric value.
pub fn from_untyped(c: &Box3D<T>) -> TypedBox3D<T, Unit>
[src]
Tag a unitless value with units.
impl<T0, Unit> TypedBox3D<T0, Unit> where
T0: NumCast + Copy,
[src]
T0: NumCast + Copy,
pub fn cast<T1: NumCast + Copy>(&self) -> TypedBox3D<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<TypedBox3D<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> TypedBox3D<T, U> where
T: Round,
[src]
T: Round,
pub fn round(&self) -> Self
[src]
Return a box3d with edges rounded to integer coordinates, such that the returned box3d 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> TypedBox3D<T, U> where
T: Floor + Ceil,
[src]
T: Floor + Ceil,
pub fn round_in(&self) -> Self
[src]
Return a box3d with faces/edges rounded to integer coordinates, such that the original box3d contains the resulting box3d.
pub fn round_out(&self) -> Self
[src]
Return a box3d with faces/edges rounded to integer coordinates, such that the original box3d is contained in the resulting box3d.
impl<T: NumCast + Copy, Unit> TypedBox3D<T, Unit>
[src]
pub fn to_f32(&self) -> TypedBox3D<f32, Unit>
[src]
Cast into an f32
box3d.
pub fn to_f64(&self) -> TypedBox3D<f64, Unit>
[src]
Cast into an f64
box3d.
pub fn to_usize(&self) -> TypedBox3D<usize, Unit>
[src]
Cast into an usize
box3d, truncating decimals if any.
When casting from floating point cuboids, 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) -> TypedBox3D<u32, Unit>
[src]
Cast into an u32
box3d, truncating decimals if any.
When casting from floating point cuboids, 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) -> TypedBox3D<i32, Unit>
[src]
Cast into an i32
box3d, truncating decimals if any.
When casting from floating point cuboids, 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) -> TypedBox3D<i64, Unit>
[src]
Cast into an i64
box3d, truncating decimals if any.
When casting from floating point cuboids, 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<TypedBox3D<T, U>> for TypedBox3D<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 TypedBox3D<T, U>
[src]
impl<T: Hash, U> Hash for TypedBox3D<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 TypedBox3D<T, U>
[src]
impl<T: Debug, U> Debug for TypedBox3D<T, U>
[src]
impl<T, U> Mul<T> for TypedBox3D<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 TypedBox3D<T, U1> where
T: Copy + Mul<T, Output = T>,
[src]
T: Copy + Mul<T, Output = T>,
type Output = TypedBox3D<T, U2>
The resulting type after applying the *
operator.
fn mul(self, scale: TypedScale<T, U1, U2>) -> TypedBox3D<T, U2>
[src]
impl<T, U> Div<T> for TypedBox3D<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 TypedBox3D<T, U2> where
T: Copy + Div<T, Output = T>,
[src]
T: Copy + Div<T, Output = T>,
type Output = TypedBox3D<T, U1>
The resulting type after applying the /
operator.
fn div(self, scale: TypedScale<T, U1, U2>) -> TypedBox3D<T, U1>
[src]
impl<T: Copy, U> Copy for TypedBox3D<T, U>
[src]
impl<T: Copy, U> Clone for TypedBox3D<T, U>
[src]
Auto Trait Implementations
impl<T, U> Unpin for TypedBox3D<T, U> where
T: Unpin,
U: Unpin,
T: Unpin,
U: Unpin,
impl<T, U> Send for TypedBox3D<T, U> where
T: Send,
U: Send,
T: Send,
U: Send,
impl<T, U> Sync for TypedBox3D<T, U> where
T: Sync,
U: Sync,
T: Sync,
U: Sync,
impl<T, U> UnwindSafe for TypedBox3D<T, U> where
T: UnwindSafe,
U: UnwindSafe,
T: UnwindSafe,
U: UnwindSafe,
impl<T, U> RefUnwindSafe for TypedBox3D<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,