itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
18 lines (17 loc) • 497 B
TypeScript
import MeshType from './mesh-type.js';
import type TypedArray from '../typed-array.js';
declare class Mesh {
readonly meshType: MeshType;
name: string;
numberOfPoints: number;
points: null | TypedArray;
numberOfPointPixels: number;
pointData: null | TypedArray;
numberOfCells: number;
cells: null | TypedArray;
cellBufferSize: number;
numberOfCellPixels: number;
cellData: null | TypedArray;
constructor(meshType?: MeshType);
}
export default Mesh;