pub struct CopcNode {
pub level: i32,
pub x: i32,
pub y: i32,
pub z: i32,
pub bounds: CopcBounds,
pub point_count: u64,
}Expand description
One COPC octree node exposed by CopcNodeReader.
Fields§
§level: i32Octree level; 0 is the root.
x: i32Node X index at level.
y: i32Node Y index at level.
z: i32Node Z index at level.
bounds: CopcBoundsWorld-space bounds of this node.
point_count: u64Points materialized by this node’s chunk.
Trait Implementations§
impl Copy for CopcNode
impl StructuralPartialEq for CopcNode
Auto Trait Implementations§
impl Freeze for CopcNode
impl RefUnwindSafe for CopcNode
impl Send for CopcNode
impl Sync for CopcNode
impl Unpin for CopcNode
impl UnsafeUnpin for CopcNode
impl UnwindSafe for CopcNode
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