1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! `point-formats` is a dependency-light crate for converting among
//! common LiDAR, point-cloud, and simple mesh interchange formats.
//!
//! The crate deliberately separates two concerns:
//!
//! * **Native codecs** for formats that can be implemented portably in safe Rust
//! without large native libraries: XYZ/TXT/CSV, PTS/PTX, PLY, PCD, OBJ, and STL.
//! * **Adapter-ready formats** such as LAS/LAZ/COPC/E57/GeoTIFF/ROS bags/vendor
//! packets, which are represented in the API and return explicit errors until
//! a downstream adapter registers a codec.
//!
//! # Example
//!
//! ```no_run
//! use point_formats::{convert_path, ConvertOptions};
//!
//! let report = convert_path(
//! "scan.xyz",
//! "scan.ply",
//! &ConvertOptions::default(),
//! )?;
//! println!("wrote {} points", report.points_written);
//! # Ok::<(), point_formats::Error>(())
//! ```
pub use ;
pub use ;
pub use ;
pub use ;