UNPKG

@bitbybit-dev/manifold

Version:

Bit By Bit Developers Manifold based CAD Library to Program Geometry

10 lines (9 loc) 300 B
import { MeshEvaluate } from "./mesh-evaluate"; import { MeshOperations } from "./mesh-operations"; // Worker make an instance of this class itself export class Mesh { constructor(wasm) { this.operations = new MeshOperations(wasm); this.evaluate = new MeshEvaluate(wasm); } }