Skip to content

Commit e9b30dc

Browse files
committed
BUG: Support Variable-Length-Vector in mesh-to-polydata
1 parent 410f01a commit e9b30dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
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
}

0 commit comments

Comments
 (0)