Skip to content
Snippets Groups Projects
Commit 2a06e542 authored by Cory Quammen's avatar Cory Quammen Committed by Kitware Robot
Browse files

Merge topic 'fix-crinkle-crip' into paraview/release


2df31b69 Fix logic for when the vtk3DLinearGridCrinkleExtractor can be used

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarSebastien Jourdain <sebastien.jourdain@kitware.com>
Merge-request: !6437
parents 88897fa5 2df31b69
Branches
No related tags found
No related merge requests found
......@@ -87,8 +87,9 @@ int vtkExtractGeometry::RequestData(
// May be nullptr, check before dereferencing.
vtkUnstructuredGrid* gridInput = vtkUnstructuredGrid::SafeDownCast(input);
if (vtk3DLinearGridCrinkleExtractor::CanFullyProcessDataObject(input) &&
this->GetExtractBoundaryCells())
if (!this->GetExtractInside() && this->GetExtractOnlyBoundaryCells() &&
this->GetExtractBoundaryCells() &&
vtk3DLinearGridCrinkleExtractor::CanFullyProcessDataObject(input))
{
vtkNew<vtk3DLinearGridCrinkleExtractor> linear3DExtractor;
linear3DExtractor->SetImplicitFunction(this->GetImplicitFunction());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment