pub struct CopcBounds {
pub min: [f64; 3],
pub max: [f64; 3],
}Expand description
Axis-aligned bounds for COPC spatial queries.
Fields§
§min: [f64; 3]Minimum corner [x, y, z].
max: [f64; 3]Maximum corner [x, y, z].
Implementations§
Source§impl CopcBounds
impl CopcBounds
Trait Implementations§
Source§impl Clone for CopcBounds
impl Clone for CopcBounds
Source§fn clone(&self) -> CopcBounds
fn clone(&self) -> CopcBounds
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CopcBounds
impl Debug for CopcBounds
Source§impl PartialEq for CopcBounds
impl PartialEq for CopcBounds
impl Copy for CopcBounds
impl StructuralPartialEq for CopcBounds
Auto Trait Implementations§
impl Freeze for CopcBounds
impl RefUnwindSafe for CopcBounds
impl Send for CopcBounds
impl Sync for CopcBounds
impl Unpin for CopcBounds
impl UnsafeUnpin for CopcBounds
impl UnwindSafe for CopcBounds
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more