mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0023473: Top face of imported STEP part is missing
Fix for constraints for case of complex internal wires Test case for this bug
This commit is contained in:
@@ -828,9 +828,9 @@ void BRepMesh_Delaun::RemovePivotTriangles( const Standard_Integer theEdgeInfo,
|
||||
{
|
||||
if ( e1[i] == anOldEdge )
|
||||
{
|
||||
for ( Standard_Integer i = 0; i < 2; ++i )
|
||||
{
|
||||
Standard_Integer aTmpEdgeId = e1[(i + 1) % 3];
|
||||
for ( Standard_Integer j = 0; j < 2; ++j )
|
||||
{
|
||||
Standard_Integer aTmpEdgeId = e1[(j + i + 1) % 3];
|
||||
const BRepMesh_Edge& anEdge = GetEdge( aTmpEdgeId );
|
||||
if ( anEdge.FirstNode() == thePivotNode ||
|
||||
anEdge.LastNode() == thePivotNode )
|
||||
|
Reference in New Issue
Block a user