Skip to content
Snippets Groups Projects
Commit ad4ec7b0 authored by Sujin Philip's avatar Sujin Philip
Browse files

Use Vtk-m's contour for uniform grid

Previously, this was disabled due to an issue with vtk-m's contour
filter which has now been resolved.
parent 5aae44d8
No related branches found
No related tags found
No related merge requests found
......@@ -72,9 +72,7 @@ bool vtkmContour::CanProcessInput(vtkDataSet* input)
auto imageData = vtkImageData::SafeDownCast(input);
if (imageData && imageData->GetDataDimension() == 3)
{
// Currently, vtkm's flying edges implementation crashes for some cases.
// Temporarily disabling this code path
return false;
return true;
}
auto rectilinearGrid = vtkRectilinearGrid::SafeDownCast(input);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment