Skip to main content

PointWriter

Trait PointWriter 

Source
pub trait PointWriter {
    // Required method
    fn write(
        &mut self,
        cloud: &PointCloud,
        options: &WriteOptions,
    ) -> SpatialResult<()>;
}
Expand description

Writes a point cloud to a file or stream.

Required Methods§

Source

fn write( &mut self, cloud: &PointCloud, options: &WriteOptions, ) -> SpatialResult<()>

Writes the point cloud using the provided options.

Implementors§