Skip to content

Commit 7c98125

Browse files
authored
Merge pull request #71 from thewtex/vlv-float32
vlv float32
2 parents 410f01a + a9d1fd7 commit 7c98125

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

wasm/mesh-to-poly-data.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ int main (int argc, char * argv[])
6868
float,
6969
double,
7070
itk::Vector<uint8_t, 3>,
71-
itk::Vector<float, 3>
71+
itk::Vector<float, 3>,
72+
itk::VariableLengthVector<uint8_t>,
73+
itk::VariableLengthVector<float>
7274
>
7375
::Dimensions<2U,3U>("mesh", pipeline);
7476
}

wasm/typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@itk-wasm/mesh-to-poly-data",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.",
55
"type": "module",
66
"module": "./dist/index.js",
@@ -52,4 +52,4 @@
5252
"type": "git",
5353
"url": "https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData"
5454
}
55-
}
55+
}

0 commit comments

Comments
 (0)