itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
19 lines • 505 B
JavaScript
import PointSetType from './point-set-type.js';
class PointSet {
pointSetType;
name = 'PointSet';
numberOfPoints;
points;
numberOfPointPixels;
pointData;
constructor(pointSetType = new PointSetType()) {
this.pointSetType = pointSetType;
this.name = 'PointSet';
this.numberOfPoints = 0;
this.points = null;
this.numberOfPointPixels = 0;
this.pointData = null;
}
}
export default PointSet;
//# sourceMappingURL=point-set.js.map