From ffe5a68504563abcae0d148bb9156947a2a6faed Mon Sep 17 00:00:00 2001 From: papush! Date: Wed, 16 Mar 2022 12:55:15 +0100 Subject: [PATCH] cleanup whitespace --- src/relaxation_filter.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/relaxation_filter.cc b/src/relaxation_filter.cc index 7927073..9ab596c 100644 --- a/src/relaxation_filter.cc +++ b/src/relaxation_filter.cc @@ -30,10 +30,10 @@ vtkTypeBool RelaxationFilter::RequestData( std::set neighbors; output->BuildLinks(); double avg[3]; - + for (vtkIdType i = 0; i < output->GetNumberOfPoints(); i++) { if (!isSurface->GetValue(i)) continue; - + output->GetPointCells(i, neighborCells); if (neighborCells->GetNumberOfIds() != 0) { @@ -70,7 +70,7 @@ vtkTypeBool RelaxationFilter::RequestData( neighborCells->Reset(); neighbors.clear(); } - + output->SetPoints(newPoints); return true; }