three-stdlib
Version:
stand-alone library of threejs examples
12 lines (11 loc) • 345 B
TypeScript
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 };