From 37465474664028b5070419fc05d0ae1adc2148a5 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Tue, 14 Feb 2023 12:59:06 +0100 Subject: [PATCH] Fix smoothing --- libsrc/meshing/smoothing3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/meshing/smoothing3.cpp b/libsrc/meshing/smoothing3.cpp index ab47a818..321c6704 100644 --- a/libsrc/meshing/smoothing3.cpp +++ b/libsrc/meshing/smoothing3.cpp @@ -340,7 +340,7 @@ namespace netgen { const auto & el = elements[ei]; - if(el.Flags().fixed || el.NP()!=4 || (mp.only3D_domain_nr && mp.only3D_domain_nr != el.GetIndex()) ) + if(el.NP()!=4 || (mp.only3D_domain_nr && mp.only3D_domain_nr != el.GetIndex()) ) return; for (PointIndex pi : el.PNums())