1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0029582: Coding Rules, Bnd_Range - inconsistent methods pair GetMin()/GetMAX()

Cosmetics - removed redundant semicolons.
Method ::GetMAX() has been renamed to ::GetMax().
Added method ::Add() taking another Bnd_Range as argument.
Added methods ::IsOut() mimicing a Bnd_Box interface.
Methods ::Shift() and ::Shifted() no more modify Void range.
This commit is contained in:
kgv
2018-03-15 22:38:19 +03:00
committed by bugmaster
parent 39a349fdcb
commit 8662560e2c
2 changed files with 48 additions and 15 deletions

View File

@@ -1763,7 +1763,7 @@ static Standard_Boolean InscribeInterval(const Standard_Real theUfTarget,
}
else
{
if (!theRange.GetMAX(anUpar))
if (!theRange.GetMax (anUpar))
{
return Standard_False;
}