BREP_kernel 0.3.1

A boundary representation (BREP) geometry kernel for building CAD applications.
Documentation
//! The JSON/wasm ABI surface of the kernel, moved out of lib.rs (moves only).
//! Children hold the serde request structs and the #[wasm_bindgen] endpoints;
//! every public item re-exports through here back to the crate root, so all
//! external paths (and the wasm export names) are unchanged.
use super::*;

mod curves;
mod display;
mod geometry;
mod handles;
mod io_abi;
mod modeling_a;
mod modeling_b;
mod objects;
mod primitives;
mod requests;

pub use curves::*;
pub use display::*;
pub use geometry::*;
pub use handles::*;
pub use io_abi::*;
pub use modeling_a::*;
pub use modeling_b::*;
pub use objects::*;
pub use primitives::*;
use requests::*;