Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+19
View File
@@ -0,0 +1,19 @@
import { BufferGeometry } from 'three';
/**
* Simplification Geometry Modifier
* - based on code and technique
* - by Stan Melax in 1998
* - Progressive Mesh type Polygon Reduction Algorithm
* - http://www.melax.com/polychop/
*/
declare class SimplifyModifier {
constructor();
private computeEdgeCollapseCost;
private removeVertex;
private computeEdgeCostAtVertex;
private removeFace;
private collapse;
private minimumCostEdge;
modify: (geometry: BufferGeometry, count: number) => BufferGeometry;
}
export { SimplifyModifier };