itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
13 lines (12 loc) • 380 B
TypeScript
import PointSetType from './point-set-type.js';
import type TypedArray from '../typed-array.js';
declare class PointSet {
readonly pointSetType: PointSetType;
name: string;
numberOfPoints: number;
points: null | TypedArray;
numberOfPointPixels: number;
pointData: null | TypedArray;
constructor(pointSetType?: PointSetType);
}
export default PointSet;