density-mesh-core 1.5.0

Core module for density mesh generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod coord;
pub mod generator;
pub mod map;
pub mod mesh;
pub mod triangle;

/// Scalar type.
pub type Scalar = f32;

pub mod prelude {
    pub use crate::{
        coord::*, generator::process_status::*, generator::*, map::*, mesh::points_separation::*,
        mesh::settings::*, mesh::*, triangle::*, Scalar,
    };
}