poisson_reconstruction/lib.rs
1/*!
2Rust implementation of the [Screened poisson reconstruction](https://www.cs.jhu.edu/~misha/MyPapers/ToG13.pdf)
3by Kazhdan and Hoppe.
4*/
5
6#![allow(clippy::type_complexity, clippy::too_many_arguments)]
7#![warn(missing_docs)]
8
9/// Floating-point type used by this library.
10pub type Real = f64;
11
12extern crate nalgebra as na;
13extern crate parry3d_f64 as parry;
14
15pub use self::poisson::PoissonReconstruction;
16
17mod conjugate_gradient;
18mod hgrid;
19pub mod marching_cubes;
20mod poisson;
21mod poisson_layer;
22mod poisson_vector_field;
23mod polynomial;