UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

16 lines (14 loc) 399 B
import type { AttributeName } from './attributes'; import type BoundingBox from './BoundingBox'; export type Metadata = { version: string; octreeDir: string; points?: number; projection?: string; boundingBox: BoundingBox; tightBoundingBox?: BoundingBox; pointAttributes: AttributeName[] | 'LAZ'; spacing: number; scale: number; hierarchyStepSize: number; };