mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
0023141: Suspicious if (2)
Fixed condition which was always true
This commit is contained in:
parent
8f905bca47
commit
06c23d6a33
@ -357,9 +357,9 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
|||||||
Standard_Real TolInit= 1.e-9;
|
Standard_Real TolInit= 1.e-9;
|
||||||
Standard_Integer nn = 7;
|
Standard_Integer nn = 7;
|
||||||
|
|
||||||
if(AC1.GetType() != GeomAbs_Circle ||
|
if(AC1.GetType() != GeomAbs_Circle &&
|
||||||
AC1.GetType() != GeomAbs_Line ||
|
AC1.GetType() != GeomAbs_Line ||
|
||||||
AC2.GetType() != GeomAbs_Circle ||
|
AC2.GetType() != GeomAbs_Circle &&
|
||||||
AC2.GetType() != GeomAbs_Line ) {
|
AC2.GetType() != GeomAbs_Line ) {
|
||||||
|
|
||||||
TolInit = 1.e-8;
|
TolInit = 1.e-8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user