export type Point = [number, number] | [number, number, number] | Float32Array; export type PointObject = { x: number; y: number; z?: number; };