UNPKG

@bitbybit-dev/occt

Version:

Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.

9 lines (8 loc) 242 B
import { OCCTCurves } from "./curves"; import { OCCTSurfaces } from "./surfaces"; export class OCCTGeom { constructor(occ, och) { this.curves = new OCCTCurves(occ, och); this.surfaces = new OCCTSurfaces(occ, och); } }