Skip to main content

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};
9#[cfg(feature = "streaming")]
10pub use reader::PlyChunkSource;
11pub use reader::{read_ply, read_ply_file, PlyReader};
12pub use schema::{infer_property_semantic, ply_property_from_field, schema_from_ply_properties};
13#[cfg(feature = "streaming")]
14pub use writer::PlyChunkSink;
15pub use writer::{write_ply, write_ply_file, PlyWriteFormat, PlyWriter};