/** * OBJParser — Parse Wavefront OBJ files into surface triangle meshes. * * Supports: v (vertices), f (faces — triangles and quads auto-triangulated). * Ignores: vn, vt, g, s, mtllib, usemtl (normals/textures/groups/materials). * * @see MeshImporter — pipes OBJ surface into AutoMesher.meshSurface() */ import type { SurfaceMesh } from '../AutoMesher'; /** * Parse a Wavefront OBJ string into a surface mesh. */ export declare function parseOBJ(text: string): SurfaceMesh; //# sourceMappingURL=OBJParser.d.ts.map