threecrate_reconstruction/lib.rs
1//! # ThreeCrate Reconstruction
2//!
3//! Surface reconstruction algorithms for 3D point clouds.
4//!
5//! This crate provides various algorithms for reconstructing surfaces from 3D point clouds,
6//! including Poisson reconstruction, ball pivoting, alpha shapes, and Delaunay triangulation.
7
8pub mod alpha_shape;
9pub mod ball_pivoting;
10pub mod delaunay;
11pub mod marching_cubes;
12pub mod moving_least_squares;
13pub mod parallel;
14pub mod pipeline;
15pub mod poisson;
16
17// Re-export commonly used items
18pub use alpha_shape::*;
19pub use ball_pivoting::*;
20pub use delaunay::*;
21pub use marching_cubes::*;
22pub use moving_least_squares::*;
23pub use parallel::*;
24pub use pipeline::*;
25pub use poisson::*;