From e9b30dcd6a6b3e62c14244f027b3a5a3c59d1f29 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 8 Nov 2024 17:03:38 -0500 Subject: [PATCH 1/2] BUG: Support Variable-Length-Vector in mesh-to-polydata --- wasm/mesh-to-poly-data.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wasm/mesh-to-poly-data.cxx b/wasm/mesh-to-poly-data.cxx index 81dda12..4ddf8d5 100644 --- a/wasm/mesh-to-poly-data.cxx +++ b/wasm/mesh-to-poly-data.cxx @@ -68,7 +68,9 @@ int main (int argc, char * argv[]) float, double, itk::Vector, - itk::Vector + itk::Vector, + itk::VariableLengthVector, + itk::VariableLengthVector > ::Dimensions<2U,3U>("mesh", pipeline); } From a9d1fd7ec7009df8a1b70a553333e8f068f3e87b Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 8 Nov 2024 17:08:46 -0500 Subject: [PATCH 2/2] ENH: Bump wasm package version to 1.1.1 --- wasm/typescript/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wasm/typescript/package.json b/wasm/typescript/package.json index a91a091..7a8d4ff 100644 --- a/wasm/typescript/package.json +++ b/wasm/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@itk-wasm/mesh-to-poly-data", - "version": "1.1.0", + "version": "1.1.1", "description": "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.", "type": "module", "module": "./dist/index.js", @@ -52,4 +52,4 @@ "type": "git", "url": "https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData" } -} \ No newline at end of file +}