From: jfa Date: Fri, 18 Nov 2022 15:19:11 +0000 (+0300) Subject: [bos #32720] EDF 25230 - partition fails on small case X-Git-Tag: V9_10_0rc1^0 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fgeom.git;a=commitdiff_plain;h=abd699810f0d9758075b9a4158d94d4965b06539 [bos #32720] EDF 25230 - partition fails on small case --- diff --git a/src/GEOMImpl/GEOMImpl_PartitionDriver.cxx b/src/GEOMImpl/GEOMImpl_PartitionDriver.cxx index 4875c4eb6..e4c3925ad 100644 --- a/src/GEOMImpl/GEOMImpl_PartitionDriver.cxx +++ b/src/GEOMImpl/GEOMImpl_PartitionDriver.cxx @@ -423,14 +423,16 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(Handle(TFunction_Logbook)& lo return 0; } - //Alternative case to check not valid partition IPAL21418 - TopoDS_Iterator It (aShape, Standard_True, Standard_True); - int nbSubshapes = 0; - for (; It.More(); It.Next()) - nbSubshapes++; - if (!nbSubshapes) - Standard_ConstructionError::Raise("Partition aborted : non valid shape result"); - //end of IPAL21418 + if (aShape.ShapeType() != TopAbs_VERTEX) { + //Alternative case to check not valid partition IPAL21418 + TopoDS_Iterator It (aShape, Standard_True, Standard_True); + int nbSubshapes = 0; + for (; It.More(); It.Next()) + nbSubshapes++; + if (!nbSubshapes) + Standard_ConstructionError::Raise("Partition aborted : non valid shape result"); + //end of IPAL21418 + } if ( !GEOMUtils::CheckShape(aShape, true) && !GEOMUtils::FixShapeTolerance(aShape) ) Standard_ConstructionError::Raise("Partition aborted : non valid shape result");