import type { SkyFrame } from "../types.js"; import { type SkyProjection } from "../canvas/projection.js"; export interface WebGlPointOptions { readonly width?: number; readonly height?: number; readonly projection?: SkyProjection; readonly rotationDegrees?: number; readonly zoom?: number; } export interface WebGlPointCloud { readonly positions: Float32Array; readonly sizes: Float32Array; readonly colors: Float32Array; readonly ids: readonly string[]; } export declare function buildWebGlPointCloud(frame: SkyFrame, options?: WebGlPointOptions): WebGlPointCloud; //# sourceMappingURL=points.d.ts.map