From 404c57fd2b4ccc04c7240315f16a57505eb873e0 Mon Sep 17 00:00:00 2001 From: "T.Alderighi" Date: Thu, 16 Jan 2020 19:27:21 +0100 Subject: [PATCH] fix yet another type (splitmanifoldcomponents) --- vcg/complex/algorithms/clean.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vcg/complex/algorithms/clean.h b/vcg/complex/algorithms/clean.h index 333728d2..b541c480 100644 --- a/vcg/complex/algorithms/clean.h +++ b/vcg/complex/algorithms/clean.h @@ -711,12 +711,13 @@ public: if(face::IsManifold(*fp, i) && !ff->IsS() && !ff->IsV()) { - ff->IsS(); - ff->IsV(); + ff->SetS(); + ff->SetS(); visitStack.push_back(ff); } } } + Append::Mesh(tmpMesh, m, true); ++selCnt; }