threecrate-reconstruction 0.8.0

Surface reconstruction algorithms for threecrate
Documentation
//! # ThreeCrate Reconstruction
//!
//! Surface reconstruction algorithms for 3D point clouds.
//!
//! This crate provides various algorithms for reconstructing surfaces from 3D point clouds,
//! including Poisson reconstruction, ball pivoting, alpha shapes, and Delaunay triangulation.

pub mod alpha_shape;
pub mod ball_pivoting;
pub mod delaunay;
pub mod marching_cubes;
pub mod moving_least_squares;
pub mod parallel;
pub mod pipeline;
pub mod poisson;

// Re-export commonly used items
pub use alpha_shape::*;
pub use ball_pivoting::*;
pub use delaunay::*;
pub use marching_cubes::*;
pub use moving_least_squares::*;
pub use parallel::*;
pub use pipeline::*;
pub use poisson::*;