We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f744b77 commit ac63dc6Copy full SHA for ac63dc6
Libs/Mesh/Mesh.cpp
@@ -298,6 +298,12 @@ Mesh& Mesh::smoothSinc(int iterations, double passband) {
298
iterations = std::max<int>(iterations, 2);
299
smoother->SetNumberOfIterations(iterations);
300
smoother->SetPassBand(passband);
301
+
302
+ smoother->BoundarySmoothingOff();
303
+ smoother->FeatureEdgeSmoothingOff();
304
+ smoother->NonManifoldSmoothingOn();
305
+ smoother->NormalizeCoordinatesOn();
306
307
smoother->Update();
308
this->poly_data_ = smoother->GetOutput();
309
0 commit comments