UNPKG

itk-wasm

Version:

High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.

11 lines (10 loc) 349 B
import Mesh from '../interface-types/mesh.js'; import PolyData from '../interface-types/poly-data.js'; /** * @deprecated Use polyDataToMesh from @itk-wasm/mesh-to-poly-data instead */ declare function polyDataToMesh(webWorker: Worker | null, polyData: PolyData): Promise<{ mesh: Mesh; webWorker: Worker; }>; export default polyDataToMesh;