Boundary representation volume modeling in TypeScript.
NPM: npm install brep.ts --save
Work in progress. Allows modelling volumes a boundary representations and intersecting them. See the interactive demo
import {B2T} from 'brep.ts'
const sphere = B2T.sphere()
const box = B2T.box()
const result = sphere.minus(box)
const resultMesh = result.toMesh()