summit/frontend/node_modules/three-stdlib/modifiers/TessellateModifier.d.ts

12 lines
345 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
import { BufferGeometry } from 'three';
/**
* Break faces with edges longer than maxEdgeLength
*/
declare class TessellateModifier {
maxEdgeLength: number;
maxIterations: number;
constructor(maxEdgeLength?: number, maxIterations?: number);
modify: (geometry: BufferGeometry) => BufferGeometry;
}
export { TessellateModifier };