Skip to main content

CopcPointSource

Trait CopcPointSource 

Source
pub trait CopcPointSource {
    // Required methods
    fn len(&self) -> usize;
    fn xyz(&self, index: usize) -> (f64, f64, f64);
    fn fields(&self, index: usize) -> Result<CopcPointFields>;

    // Provided method
    fn is_empty(&self) -> bool { ... }
}
Expand description

Abstract point-data source for COPC emission.

Required Methods§

Source

fn len(&self) -> usize

Source

fn xyz(&self, index: usize) -> (f64, f64, f64)

Source

fn fields(&self, index: usize) -> Result<CopcPointFields>

Provided Methods§

Source

fn is_empty(&self) -> bool

Implementors§