Skip to content
Snippets Groups Projects
Commit 574c9649 authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

REFAC: SurfaceMeshFlyingEdges should not generate scalars or gradients

parent e0e83432
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,8 @@ SurfaceMeshFlyingEdges::requestUpdate()
filter->SetInputData(GeometryUtils::coupleVtkImageData(inputImage));
filter->SetValue(0, m_IsoValue);
filter->ComputeNormalsOff();
filter->ComputeScalarsOff();
filter->ComputeGradientsOff();
filter->Update();
std::dynamic_pointer_cast<SurfaceMesh>(getOutput(0))->deepCopy(GeometryUtils::copyToSurfaceMesh(filter->GetOutput()));
......
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