brepkit-wasm 3.2.21

WebAssembly bindings for brepkit — browser-native B-Rep solid modeling
Documentation
//! # brepkit-wasm
//!
//! WebAssembly bindings for brepkit via `wasm-bindgen`.
//!
//! This is layer L3, the public API surface for JavaScript/TypeScript consumers.
//!
//! The primary entry point is [`kernel::BrepKernel`], which owns all modeling
//! state and exposes shape creation, operations, and tessellation to JS.

mod bindings;
pub mod error;
mod handles;
mod helpers;
pub mod kernel;
mod logging;
pub mod panics;
pub mod shapes;
mod state;
mod types;