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.