Files
Project_Velocity/Software/app/node_modules/three-stdlib/utils/GeometryCompressionUtils.d.ts
2026-02-21 09:09:20 +05:30

8 lines
231 B
TypeScript

import { Mesh } from 'three'
export namespace GeometryCompressionUtils {
function compressNormals(mesh: Mesh, encodeMethod: string): void
function compressPositions(mesh: Mesh): void
function compressUvs(mesh: Mesh): void
}