Skip to main content

spatialrust_io/e57/
mod.rs

1//! E57 (ASTM E2807) readers and writers for point clouds.
2
3mod reader;
4mod schema;
5mod writer;
6
7pub use reader::{read_e57, read_e57_file, E57Reader};
8pub use schema::{e57_prototype_from_schema, schema_for_e57_pointcloud, schema_from_point_cloud};
9pub use writer::{write_e57, write_e57_file, E57Writer};