itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
18 lines • 740 B
JavaScript
import FloatTypes from './float-types.js';
import PixelTypes from './pixel-types.js';
class PointSetType {
dimension;
pointComponentType;
pointPixelComponentType;
pointPixelType;
pointPixelComponents;
constructor(dimension = 3, pointComponentType = FloatTypes.Float32, pointPixelComponentType = FloatTypes.Float32, pointPixelType = PixelTypes.Scalar, pointPixelComponents = 1) {
this.dimension = dimension;
this.pointComponentType = pointComponentType;
this.pointPixelComponentType = pointPixelComponentType;
this.pointPixelType = pointPixelType;
this.pointPixelComponents = pointPixelComponents;
}
}
export default PointSetType;
//# sourceMappingURL=point-set-type.js.map