Struct truck_rendimpl::polymesh::BoundingBox
source · [−]pub struct BoundingBox<V>(_, _);Expand description
bounding box
Implementations
sourceimpl<F, V> BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Index<usize, Output = F> + Bounded<F> + Copy,
impl<F, V> BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Index<usize, Output = F> + Bounded<F> + Copy,
sourcepub fn new() -> BoundingBox<V>
pub fn new() -> BoundingBox<V>
Creats an empty bounding box
sourcepub fn push(&mut self, point: &V)
pub fn push(&mut self, point: &V)
Adds a point to the bouding box.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, 1.0));
bdd_box.push(&Vector2::new(1.0, -1.0));
assert_eq!(bdd_box.min(), &Vector2::new(-1.0, -1.0));
assert_eq!(bdd_box.max(), &Vector2::new(1.0, 1.0));Remarks
If the added point has NAN component, then the point is not added.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, 1.0));
bdd_box.push(&Vector2::new(1.0, -1.0));
bdd_box.push(&Vector2::new(std::f64::NAN, 1.0));
bdd_box.push(&Vector2::new(-1.0, std::f64::NAN));
assert_eq!(bdd_box.min(), &Vector2::new(-1.0, -1.0));
assert_eq!(bdd_box.max(), &Vector2::new(1.0, 1.0));sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns the bounding box is empty or not.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
assert!(bdd_box.is_empty());
bdd_box.push(&Vector2::new(-1.0, 1.0));
assert!(!bdd_box.is_empty());sourcepub fn max(&self) -> &V
pub fn max(&self) -> &V
Returns the reference to the maximum point.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, 1.0));
bdd_box.push(&Vector2::new(1.0, -1.0));
assert_eq!(bdd_box.max(), &Vector2::new(1.0, 1.0));Remarks
If the bounding box is empty, returned vector consists NEG_INFINITY components.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector2>::new();
assert_eq!(bdd_box.max(), &Vector2::from([f64::NEG_INFINITY; 2]));sourcepub fn min(&self) -> &V
pub fn min(&self) -> &V
Returns the reference to the minimal point.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, 1.0));
bdd_box.push(&Vector2::new(1.0, -1.0));
assert_eq!(bdd_box.min(), &Vector2::new(-1.0, -1.0));Remarks
If the bounding box is empty, returned vector consists INFINITY components.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector2>::new();
assert_eq!(bdd_box.min(), &Vector2::from([f64::INFINITY; 2]));sourcepub fn diagonal(&self) -> <V as Bounded<F>>::Vector
pub fn diagonal(&self) -> <V as Bounded<F>>::Vector
Returns the diagonal vector.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-2.0, -3.0));
bdd_box.push(&Vector2::new(6.0, 4.0));
assert_eq!(bdd_box.diagonal(), Vector2::new(8.0, 7.0));Remarks
If the bounding box is empty, returned vector consists f64::NEG_INFINITY components.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector2>::new();
assert_eq!(bdd_box.diagonal(), Vector2::new(f64::NEG_INFINITY, f64::NEG_INFINITY));sourcepub fn diameter(&self) -> F
pub fn diameter(&self) -> F
Returns the diameter of the bounding box.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, -3.0));
bdd_box.push(&Vector2::new(2.0, 1.0));
assert_eq!(bdd_box.diameter(), 5.0);Remarks
If the bounding box is empty, returnes f64::NEG_INFINITY.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector3>::new();
assert_eq!(bdd_box.diameter(), f64::NEG_INFINITY);sourcepub fn size(&self) -> F
pub fn size(&self) -> F
Returns the maximum length of the edges of the bounding box.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector3::new(-1.0, -3.0, 2.0));
bdd_box.push(&Vector3::new(2.0, 1.0, 10.0));
assert_eq!(bdd_box.size(), 8.0);Remarks
If the bounding box is empty, returnes f64::NEG_INFINITY.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector3>::new();
assert_eq!(bdd_box.size(), f64::NEG_INFINITY);sourcepub fn center(&self) -> V
pub fn center(&self) -> V
Returns the center of the bounding box.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::new();
bdd_box.push(&Vector2::new(-1.0, -3.0));
bdd_box.push(&Vector2::new(5.0, 1.0));
assert_eq!(bdd_box.center(), Vector2::new(2.0, -1.0));Remarks
If the bounding box is empty, returned vector consists std::f64::NAN components.
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box = BoundingBox::<Vector3>::new();
let center = bdd_box.center();
assert!(center[0].is_nan());
assert!(center[1].is_nan());
assert!(center[2].is_nan());Trait Implementations
sourceimpl<'_, '_, F, V> Add<&'_ BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, '_, F, V> Add<&'_ BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add(self, other: &BoundingBox<V>) -> BoundingBox<V>
fn add(self, other: &BoundingBox<V>) -> BoundingBox<V>
Returns the direct sum of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = &bdd_box0 + &bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
let cloned_bdd_box = &bdd_box + &BoundingBox::new();
assert_eq!(cloned_bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(cloned_bdd_box.max(), &Vector2::new(7.0, 6.0));type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the + operator.
sourceimpl<'_, F, V> Add<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> Add<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add(self, other: &BoundingBox<V>) -> BoundingBox<V>
fn add(self, other: &BoundingBox<V>) -> BoundingBox<V>
Returns the direct sum of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = bdd_box0 + &bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
let cloned_bdd_box = bdd_box + &BoundingBox::new();
assert_eq!(cloned_bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(cloned_bdd_box.max(), &Vector2::new(7.0, 6.0));type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the + operator.
sourceimpl<'_, F, V> Add<BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> Add<BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add(self, other: BoundingBox<V>) -> BoundingBox<V>
fn add(self, other: BoundingBox<V>) -> BoundingBox<V>
Returns the direct sum of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = &bdd_box0 + bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
let cloned_bdd_box = &bdd_box + BoundingBox::new();
assert_eq!(cloned_bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(cloned_bdd_box.max(), &Vector2::new(7.0, 6.0));type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the + operator.
sourceimpl<F, V> Add<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<F, V> Add<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add(self, other: BoundingBox<V>) -> BoundingBox<V>
fn add(self, other: BoundingBox<V>) -> BoundingBox<V>
Returns the direct sum of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = bdd_box0 + bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
let cloned_bdd_box = bdd_box + BoundingBox::new();
assert_eq!(cloned_bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(cloned_bdd_box.max(), &Vector2::new(7.0, 6.0));type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the + operator.
sourceimpl<'_, F, V> AddAssign<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> AddAssign<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add_assign(&mut self, other: &BoundingBox<V>)
fn add_assign(&mut self, other: &BoundingBox<V>)
Puts the points in other into self.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
bdd_box += &BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
bdd_box += &BoundingBox::new();
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));sourceimpl<F, V> AddAssign<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<F, V> AddAssign<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn add_assign(&mut self, other: BoundingBox<V>)
fn add_assign(&mut self, other: BoundingBox<V>)
Puts the points in other into self.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
bdd_box += BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));
bdd_box += BoundingBox::new();
assert_eq!(bdd_box.min(), &Vector2::new(3.0, 1.0));
assert_eq!(bdd_box.max(), &Vector2::new(7.0, 6.0));sourceimpl<'_, '_, F, V> BitXor<&'_ BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, '_, F, V> BitXor<&'_ BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor(self, other: &BoundingBox<V>) -> BoundingBox<V>
fn bitxor(self, other: &BoundingBox<V>) -> BoundingBox<V>
Returns the intersection of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = &bdd_box0 ^ &bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
let new_empty = &bdd_box ^ &BoundingBox::new();
assert!(new_empty.is_empty());type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the ^ operator.
sourceimpl<'_, F, V> BitXor<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> BitXor<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor(self, other: &BoundingBox<V>) -> BoundingBox<V>
fn bitxor(self, other: &BoundingBox<V>) -> BoundingBox<V>
Returns the intersection of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = bdd_box0 ^ &bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
let new_empty = bdd_box ^ &BoundingBox::new();
assert!(new_empty.is_empty());type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the ^ operator.
sourceimpl<'_, F, V> BitXor<BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> BitXor<BoundingBox<V>> for &'_ BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor(self, other: BoundingBox<V>) -> BoundingBox<V>
fn bitxor(self, other: BoundingBox<V>) -> BoundingBox<V>
Returns the intersection of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = &bdd_box0 ^ bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
let new_empty = &bdd_box ^ BoundingBox::new();
assert!(new_empty.is_empty());type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the ^ operator.
sourceimpl<F, V> BitXor<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<F, V> BitXor<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor(self, other: BoundingBox<V>) -> BoundingBox<V>
fn bitxor(self, other: BoundingBox<V>) -> BoundingBox<V>
Returns the intersection of self and other.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let bdd_box0 = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
let bdd_box1 = BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
let bdd_box = bdd_box0 ^ bdd_box1;
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
let new_empty = bdd_box ^ BoundingBox::new();
assert!(new_empty.is_empty());type Output = BoundingBox<V>
type Output = BoundingBox<V>
The resulting type after applying the ^ operator.
sourceimpl<'_, F, V> BitXorAssign<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'_, F, V> BitXorAssign<&'_ BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor_assign(&mut self, other: &BoundingBox<V>)
fn bitxor_assign(&mut self, other: &BoundingBox<V>)
Assigns the intersection of self and other to self.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
bdd_box ^= &BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
bdd_box ^= &BoundingBox::new();
assert!(bdd_box.is_empty());sourceimpl<F, V> BitXorAssign<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<F, V> BitXorAssign<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn bitxor_assign(&mut self, other: BoundingBox<V>)
fn bitxor_assign(&mut self, other: BoundingBox<V>)
Assigns the intersection of self and other to self.
Examples
use truck_base::{cgmath64::*, bounding_box::*, tolerance::*};
let mut bdd_box = BoundingBox::from_iter(&[
Vector2::new(3.0, 2.0), Vector2::new(5.0, 6.0),
]);
bdd_box ^= BoundingBox::from_iter(&[
Vector2::new(4.0, 1.0), Vector2::new(7.0, 4.0),
]);
assert_eq!(bdd_box.min(), &Vector2::new(4.0, 2.0));
assert_eq!(bdd_box.max(), &Vector2::new(5.0, 4.0));
bdd_box ^= BoundingBox::new();
assert!(bdd_box.is_empty());sourceimpl<V> Clone for BoundingBox<V> where
V: Clone,
impl<V> Clone for BoundingBox<V> where
V: Clone,
sourcefn clone(&self) -> BoundingBox<V>
fn clone(&self) -> BoundingBox<V>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<V> Debug for BoundingBox<V> where
V: Debug,
impl<V> Debug for BoundingBox<V> where
V: Debug,
sourceimpl<F, V> Default for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Index<usize, Output = F> + Bounded<F> + Copy,
impl<F, V> Default for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Index<usize, Output = F> + Bounded<F> + Copy,
sourcefn default() -> BoundingBox<V>
fn default() -> BoundingBox<V>
Returns the “default value” for a type. Read more
sourceimpl<'de, V> Deserialize<'de> for BoundingBox<V> where
V: Deserialize<'de>,
impl<'de, V> Deserialize<'de> for BoundingBox<V> where
V: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<BoundingBox<V>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BoundingBox<V>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'a, F, V> FromIterator<&'a V> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<'a, F, V> FromIterator<&'a V> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn from_iter<I>(iter: I) -> BoundingBox<V> where
I: IntoIterator<Item = &'a V>,
fn from_iter<I>(iter: I) -> BoundingBox<V> where
I: IntoIterator<Item = &'a V>,
Creates a value from an iterator. Read more
sourceimpl<F, V> FromIterator<V> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
impl<F, V> FromIterator<V> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F>,
sourcefn from_iter<I>(iter: I) -> BoundingBox<V> where
I: IntoIterator<Item = V>,
fn from_iter<I>(iter: I) -> BoundingBox<V> where
I: IntoIterator<Item = V>,
Creates a value from an iterator. Read more
sourceimpl<V> PartialEq<BoundingBox<V>> for BoundingBox<V> where
V: PartialEq<V>,
impl<V> PartialEq<BoundingBox<V>> for BoundingBox<V> where
V: PartialEq<V>,
sourcefn eq(&self, other: &BoundingBox<V>) -> bool
fn eq(&self, other: &BoundingBox<V>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &BoundingBox<V>) -> bool
fn ne(&self, other: &BoundingBox<V>) -> bool
This method tests for !=.
sourceimpl<F, V> PartialOrd<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F> + PartialEq<V>,
impl<F, V> PartialOrd<BoundingBox<V>> for BoundingBox<V> where
F: BaseFloat,
V: MetricSpace<Metric = F> + Copy + Index<usize, Output = F> + Bounded<F> + PartialEq<V>,
sourcefn partial_cmp(&self, other: &BoundingBox<V>) -> Option<Ordering>
fn partial_cmp(&self, other: &BoundingBox<V>) -> Option<Ordering>
Inclusion relationship
Examples
use truck_base::{cgmath64::*, bounding_box::*};
let bbx0 = BoundingBox::from_iter(&[
Point2::new(0.0, 0.0),
Point2::new(1.0, 1.0),
]);
let bbx1 = BoundingBox::from_iter(&[
Point2::new(0.25, 0.25),
Point2::new(0.75, 0.75),
]);
// bbx0 includes bbx1.
assert!(bbx0 > bbx1);
let bbx2 = BoundingBox::from_iter(&[
Point2::new(-1.0, -1.0),
Point2::new(0.75, 0.75),
]);
// bbx0 does not include bbx2, and bbx2 does not include bbx0.
assert!(!(bbx0 > bbx2));
assert!(!(bbx0 < bbx2));
assert!(!(bbx0 == bbx2));1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl<V> Serialize for BoundingBox<V> where
V: Serialize,
impl<V> Serialize for BoundingBox<V> where
V: 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
impl<V> StructuralPartialEq for BoundingBox<V>
Auto Trait Implementations
impl<V> RefUnwindSafe for BoundingBox<V> where
V: RefUnwindSafe,
impl<V> Send for BoundingBox<V> where
V: Send,
impl<V> Sync for BoundingBox<V> where
V: Sync,
impl<V> Unpin for BoundingBox<V> where
V: Unpin,
impl<V> UnwindSafe for BoundingBox<V> where
V: 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
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
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