Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

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 };