UNPKG

@foxglove/velodyne-cloud

Version:

TypeScript library for converting Velodyne LIDAR packet data to point clouds

13 lines 377 B
import { BlockId } from "./VelodyneTypes"; export declare class RawBlock { data: Uint8Array; view: DataView; blockId: BlockId; rotation: number; constructor(data: Uint8Array); isUpperBlock(): boolean; isValid(index: number): boolean; distance(index: number): number; intensity(index: number): number; } //# sourceMappingURL=RawBlock.d.ts.map