8 lines
231 B
TypeScript
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
|
||
|
|
}
|