itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
17 lines (14 loc) • 416 B
text/typescript
import PolyData from '../../interface-types/poly-data.js'
import TypedArray from '../../typed-array.js'
function polyDataTransferables (polyData: PolyData): Array<ArrayBuffer | TypedArray | null> {
return [
polyData.points,
polyData.vertices,
polyData.lines,
polyData.polygons,
polyData.triangleStrips,
polyData.pointData,
polyData.cellData
]
}
export default polyDataTransferables