Skip to content

Commit

Permalink
BUG: Support Variable-Length-Vector in mesh-to-polydata
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Nov 8, 2024
1 parent 410f01a commit e9b30dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wasm/mesh-to-poly-data.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ int main (int argc, char * argv[])
float,
double,
itk::Vector<uint8_t, 3>,
itk::Vector<float, 3>
itk::Vector<float, 3>,
itk::VariableLengthVector<uint8_t>,
itk::VariableLengthVector<float>
>
::Dimensions<2U,3U>("mesh", pipeline);
}

0 comments on commit e9b30dc

Please sign in to comment.