mesh-simplifier
Version:
Collection of mesh simplification methods written in Typescript
14 lines (13 loc) • 483 B
TypeScript
import * as Simplifiers from "./MeshSimplifiers";
import * as math from "./math";
import * as Geometries from "./Geometries";
import * as Adapters from "./Adapters";
declare const _default: {
ThreeAdapter: typeof Adapters.ThreeAdapter;
ThreeGeometry: typeof Geometries.ThreeGeometry;
Vector3: typeof math.Vector3;
Face3: typeof math.Face3;
SymmetricMatrix: typeof math.SymmetricMatrix;
FastQuadric: typeof Simplifiers.FastQuadric;
};
export default _default;