pub struct AoSoAXyzChunk { /* private fields */ }Expand description
Interleaved XYZ layout for one SpatialTensorChunk (3 * point_count floats).
Implementations§
Source§impl AoSoAXyzChunk
impl AoSoAXyzChunk
Sourcepub fn pack(
chunk: &SpatialTensorChunk,
cloud: &PointCloud,
) -> SpatialResult<Self>
pub fn pack( chunk: &SpatialTensorChunk, cloud: &PointCloud, ) -> SpatialResult<Self>
Packs chunk points into interleaved [x,y,z, …] order.
Trait Implementations§
Source§impl Clone for AoSoAXyzChunk
impl Clone for AoSoAXyzChunk
Source§fn clone(&self) -> AoSoAXyzChunk
fn clone(&self) -> AoSoAXyzChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AoSoAXyzChunk
impl Debug for AoSoAXyzChunk
Source§impl PartialEq for AoSoAXyzChunk
impl PartialEq for AoSoAXyzChunk
Source§fn eq(&self, other: &AoSoAXyzChunk) -> bool
fn eq(&self, other: &AoSoAXyzChunk) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AoSoAXyzChunk
Auto Trait Implementations§
impl Freeze for AoSoAXyzChunk
impl RefUnwindSafe for AoSoAXyzChunk
impl Send for AoSoAXyzChunk
impl Sync for AoSoAXyzChunk
impl Unpin for AoSoAXyzChunk
impl UnsafeUnpin for AoSoAXyzChunk
impl UnwindSafe for AoSoAXyzChunk
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