itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
14 lines (10 loc) • 407 B
text/typescript
// @ts-nocheck
import Mesh from '../interface-types/mesh.js'
import PolyData from '../interface-types/poly-data.js'
/**
* @deprecated Use meshToPolyDataNode from @itk-wasm/mesh-to-poly-data instead
*/
async function meshToPolyDataNode (mesh: Mesh): Promise<PolyData> {
throw new Error('This function has been migrated to the @itk-wasm/mesh-to-poly-data package.')
}
export default meshToPolyDataNode