mesh-sieve 4.0.2

Modular, high-performance Rust library for mesh and data management, designed for scientific computing and PDE codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Geometry utilities for mesh-sieve.
//!
//! This module provides helpers for evaluating basic cell quality metrics
//! using coordinate sections.

pub mod cell_vertex_ordering;
pub use cell_vertex_ordering::{
    CanonicalCellVertices, CanonicalOrderingOptions, canonical_cell_vertices,
    canonical_cell_vertices_with_options, topology_cell_vertices,
};
pub mod fvm;
pub mod locate;
pub mod metrics;
pub mod quality;

#[cfg(test)]
mod tests;