1 2 3 4 5 6 7 8 9
//! PLY (Polygon File Format / Stanford Triangle Format) I/O. //! //! Supports ASCII and binary little-endian variants for triangle meshes. pub mod reader; pub mod writer; pub use reader::{read_ply, read_ply_solid}; pub use writer::write_ply;