1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0022757: Exception in ShapeHealing

This commit is contained in:
DBV 2011-12-08 13:15:13 +00:00 committed by bugmaster
parent 7637f2b35d
commit 9248974cd0

View File

@ -64,7 +64,7 @@ Standard_Real ShapeAnalysis::AdjustByPeriod(const Standard_Real Val,
Standard_Real P = Abs ( Period );
if ( D <= 0.5 * P ) return 0.;
if ( P < 1e-100 ) return diff;
return ( diff >0 ? -P : P ) * (Standard_Integer)( D / P + 0.5 );
return ( diff >0 ? -P : P ) * floor( D / P + 0.5 );
}
//=======================================================================