This commit is contained in:
eap 2020-02-26 12:02:38 +03:00
parent 0e63df0f03
commit e6f1c5ae12

View File

@ -420,9 +420,9 @@ namespace
const TopTools_MapOfShape& cornerVV,
TopTools_MapOfShape& internEE)
{
TopTools_IndexedMapOfShape subEE;
TopTools_IndexedMapOfShape subEE, subFF;
TopExp::MapShapes( shape, TopAbs_EDGE, subEE );
//TopExp::MapShapes( shape, TopAbs_FACE, subFF );
TopExp::MapShapes( shape, TopAbs_FACE, subFF );
TopoDS_Vertex VV[2];
TopTools_MapOfShape subChecked, ridgeEE;
@ -460,6 +460,8 @@ namespace
{
if ( !SMESH_MesherHelper::IsSubShape( ridgeE, *F ))
continue;
if ( !subFF.Contains( *F ))
continue;
if ( isContinuousMesh( ridgeE, TopoDS::Edge( *E ), TopoDS::Face( *F ), mesh ))
{
nextRidgeE = *E;