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

36
node_modules/three-stdlib/exporters/DRACOExporter.d.ts generated vendored Normal file
View File

@@ -0,0 +1,36 @@
import * as THREE from 'three'
declare class DRACOExporter {
// Encoder methods
public static MESH_EDGEBREAKER_ENCODING: number
public static MESH_SEQUENTIAL_ENCODING: number
// Geometry type
public static POINT_CLOUD: number
public static TRIANGULAR_MESH: number
// Attribute type
public static INVALID: number
public static POSITION: number
public static NORMAL: number
public static COLOR: number
public static TEX_COORD: number
public static GENERIC: number
public parse(
object: THREE.Mesh | THREE.Points,
options?: {
decodeSpeed?: number
encodeSpeed?: number
encoderMethod?: number
quantization?: [number, number, number, number, number]
exportUvs?: boolean
exportNormals?: boolean
exportColor?: boolean
},
): Int8Array
}
export { DRACOExporter }