/** * TetGenWasmMesher — Wrapper for the TetGen WebAssembly binary. * * This mesher generates high-quality constrained Delaunay tetrahedralizations. * It is used for complex surface-to-volume meshing where the structured * box mesher is insufficient. */ import type { TetMesh, WasmMesher, SurfaceMesh, SurfaceMeshOptions } from '../AutoMesher'; export declare class TetGenWasmMesher implements WasmMesher { readonly id = "tetgen"; readonly name = "TetGen (High-Fidelity)"; private wasmUrls; constructor(wasmUrl?: string | string[]); init(): Promise; tetrahedralize(surface: SurfaceMesh, options?: SurfaceMeshOptions): Promise; } //# sourceMappingURL=TetGenWasmMesher.d.ts.map