fj-core 0.49.0

Early-stage b-rep CAD kernel.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Types that are tied to objects, but aren't objects themselves

mod boundary;
mod geometry;
mod half_edge;
mod path;
mod surface;

pub use self::{
    boundary::{CurveBoundary, CurveBoundaryElement},
    geometry::Geometry,
    half_edge::HalfEdgeGeometry,
    path::{GlobalPath, SurfacePath},
    surface::SurfaceGeometry,
};