1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

0026989: [Regression in 6.9.0] Export of a reversed face leads to wrong data in 6.9.0

Add range for degenerated edges to mirrored pcurves during exporting of reversed faces.
This commit is contained in:
ika
2016-01-12 18:08:26 +03:00
committed by bugmaster
parent bfa7a6857a
commit 52849da68c
2 changed files with 13 additions and 0 deletions

View File

@@ -198,6 +198,10 @@ Handle(IGESData_IGESEntity) BRepToIGES_BRShell ::TransferFace(const TopoDS_Face&
else {
B.UpdateEdge(anEdge, aCurve1, myface, aTol);
}
// set range for degenerated edges
if (BRep_Tool::Degenerated(anEdge)) {
B.Range(anEdge, myface, f, l);
}
}
}
}