itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
29 lines • 702 B
JavaScript
import MeshType from './mesh-type.js';
class Mesh {
meshType;
name = 'Mesh';
numberOfPoints;
points;
numberOfPointPixels;
pointData;
numberOfCells;
cells;
cellBufferSize;
numberOfCellPixels;
cellData;
constructor(meshType = new MeshType()) {
this.meshType = meshType;
this.name = 'Mesh';
this.numberOfPoints = 0;
this.points = null;
this.numberOfPointPixels = 0;
this.pointData = null;
this.numberOfCells = 0;
this.cellBufferSize = 0;
this.cells = null;
this.numberOfCellPixels = 0;
this.cellData = null;
}
}
export default Mesh;
//# sourceMappingURL=mesh.js.map