1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

0023252: Fillet regression

This commit is contained in:
emv
2012-09-20 08:29:26 +04:00
parent a180e3849f
commit 73a97e76da
6 changed files with 25 additions and 12 deletions

View File

@@ -94,7 +94,8 @@ TopAbs_State TopOpeBRepBuild_CompositeClassifier::Compare
TopOpeBRepBuild_BlockIterator Bit2 = L2->BlockIterator();
for (Bit2.Initialize(); Bit2.More(); Bit2.Next()) {
const TopoDS_Shape& s2 = MYBB->Element(Bit2);
CompareElement(s2);
if (!CompareElement(s2))
break;
}
state = State();
}