fj-core 0.49.0

Early-stage b-rep CAD kernel.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! All validation checks
//!
//! See documentation of [parent module](super) for more information.

mod face_boundary;
mod half_edge_connection;

pub use self::{
    face_boundary::FaceHasNoBoundary,
    half_edge_connection::AdjacentHalfEdgesNotConnected,
};