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
16
//! Loosely coupled layers, that together define shapes
//!
//! See [`Layers`].

pub mod geometry;
pub mod objects;
pub mod presentation;
pub mod validation;

mod layer;
mod layers;

pub use self::{
    layer::{Command, Event, Layer},
    layers::Layers,
};