spatialrust_io/ply/mod.rs
1//! PLY (Polygon File Format) readers and writers for point clouds.
2
3mod header;
4mod reader;
5mod schema;
6mod writer;
7
8pub use header::{PlyFormat, PlyHeader, PlyProperty, PlyPropertyKind};
9pub use reader::{read_ply, read_ply_file, PlyReader};
10pub use schema::{infer_property_semantic, ply_property_from_field, schema_from_ply_properties};
11pub use writer::{write_ply, write_ply_file, PlyWriteFormat, PlyWriter};