1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0022915: crash in iges reader TransferRoots()

This commit is contained in:
AMA 2012-02-17 11:06:07 +00:00 committed by bugmaster
parent 518d862156
commit 64efb152a0

View File

@ -120,5 +120,5 @@
Standard_Boolean IGESGeom_CircularArc::IsClosed () const
{
return ((theStart.X() == theEnd.X()) && (theStart.Y() == theEnd.Y()));
return (Abs (theStart.X() - theEnd.X()) < Precision::PConfusion() && Abs (theStart.Y() - theEnd.Y()) < Precision::PConfusion());
}