mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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:
parent
39a349fdcb
commit
8662560e2c
@ -24,15 +24,12 @@
|
|||||||
//! This class describes a range in 1D space restricted
|
//! This class describes a range in 1D space restricted
|
||||||
//! by two real values.
|
//! by two real values.
|
||||||
//! A range can be void indicating there is no point included in the range.
|
//! A range can be void indicating there is no point included in the range.
|
||||||
|
|
||||||
class Bnd_Range
|
class Bnd_Range
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Default constructor. Creates VOID range.
|
//! Default constructor. Creates VOID range.
|
||||||
Bnd_Range() : myFirst(0.0), myLast(-1.0)
|
Bnd_Range() : myFirst(0.0), myLast(-1.0) {}
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
//! Constructor. Never creates VOID range.
|
//! Constructor. Never creates VOID range.
|
||||||
Bnd_Range(const Standard_Real theMin, const Standard_Real theMax) :
|
Bnd_Range(const Standard_Real theMin, const Standard_Real theMax) :
|
||||||
@ -40,7 +37,7 @@ public:
|
|||||||
{
|
{
|
||||||
if(myLast < myFirst)
|
if(myLast < myFirst)
|
||||||
throw Standard_ConstructionError("Last < First");
|
throw Standard_ConstructionError("Last < First");
|
||||||
};
|
}
|
||||||
|
|
||||||
//! Replaces <this> with common-part of <this> and theOther
|
//! Replaces <this> with common-part of <this> and theOther
|
||||||
Standard_EXPORT void Common(const Bnd_Range& theOther);
|
Standard_EXPORT void Common(const Bnd_Range& theOther);
|
||||||
@ -49,6 +46,7 @@ public:
|
|||||||
//! Replaces *this to the result.
|
//! Replaces *this to the result.
|
||||||
//! Returns false if the operation cannot be done (e.g.
|
//! Returns false if the operation cannot be done (e.g.
|
||||||
//! input arguments are empty or separated).
|
//! input arguments are empty or separated).
|
||||||
|
//! @sa use method ::Add() to merge two ranges unconditionally
|
||||||
Standard_EXPORT Standard_Boolean Union(const Bnd_Range& theOther);
|
Standard_EXPORT Standard_Boolean Union(const Bnd_Range& theOther);
|
||||||
|
|
||||||
//! Splits <this> to several sub-ranges by theVal value
|
//! Splits <this> to several sub-ranges by theVal value
|
||||||
@ -91,6 +89,22 @@ public:
|
|||||||
myLast = Max(myLast, theParameter);
|
myLast = Max(myLast, theParameter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//! Extends this range to include both ranges.
|
||||||
|
//! @sa use method ::Union() to check if two ranges overlap method merging
|
||||||
|
void Add (const Bnd_Range& theRange)
|
||||||
|
{
|
||||||
|
if (theRange.IsVoid())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if (IsVoid())
|
||||||
|
{
|
||||||
|
*this = theRange;
|
||||||
|
}
|
||||||
|
myFirst = Min(myFirst, theRange.myFirst);
|
||||||
|
myLast = Max(myLast, theRange.myLast);
|
||||||
|
}
|
||||||
|
|
||||||
//! Obtain MIN boundary of <this>.
|
//! Obtain MIN boundary of <this>.
|
||||||
//! If <this> is VOID the method returns false.
|
//! If <this> is VOID the method returns false.
|
||||||
Standard_Boolean GetMin(Standard_Real& thePar) const
|
Standard_Boolean GetMin(Standard_Real& thePar) const
|
||||||
@ -106,7 +120,7 @@ public:
|
|||||||
|
|
||||||
//! Obtain MAX boundary of <this>.
|
//! Obtain MAX boundary of <this>.
|
||||||
//! If <this> is VOID the method returns false.
|
//! If <this> is VOID the method returns false.
|
||||||
Standard_Boolean GetMAX(Standard_Real& thePar) const
|
Standard_Boolean GetMax(Standard_Real& thePar) const
|
||||||
{
|
{
|
||||||
if(IsVoid())
|
if(IsVoid())
|
||||||
{
|
{
|
||||||
@ -166,14 +180,34 @@ public:
|
|||||||
//! Returns the copy of <*this> shifted by theVal
|
//! Returns the copy of <*this> shifted by theVal
|
||||||
Bnd_Range Shifted(const Standard_Real theVal) const
|
Bnd_Range Shifted(const Standard_Real theVal) const
|
||||||
{
|
{
|
||||||
return Bnd_Range(myFirst + theVal, myLast + theVal);
|
return !IsVoid() ? Bnd_Range(myFirst + theVal, myLast + theVal) : Bnd_Range();
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Shifts <*this> by theVal
|
//! Shifts <*this> by theVal
|
||||||
void Shift(const Standard_Real theVal)
|
void Shift(const Standard_Real theVal)
|
||||||
{
|
{
|
||||||
myFirst += theVal;
|
if (!IsVoid())
|
||||||
myLast += theVal;
|
{
|
||||||
|
myFirst += theVal;
|
||||||
|
myLast += theVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Returns True if the value is out of this range.
|
||||||
|
Standard_Boolean IsOut (Standard_Real theValue) const
|
||||||
|
{
|
||||||
|
return IsVoid()
|
||||||
|
|| theValue < myFirst
|
||||||
|
|| theValue > myLast;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Returns True if the given range is out of this range.
|
||||||
|
Standard_Boolean IsOut (const Bnd_Range& theRange) const
|
||||||
|
{
|
||||||
|
return IsVoid()
|
||||||
|
|| theRange.IsVoid()
|
||||||
|
|| theRange.myLast < myFirst
|
||||||
|
|| theRange.myFirst > myLast;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns TRUE if theOther is equal to <*this>
|
//! Returns TRUE if theOther is equal to <*this>
|
||||||
@ -183,11 +217,10 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
//! Start of range
|
|
||||||
Standard_Real myFirst;
|
|
||||||
|
|
||||||
//! End of range
|
Standard_Real myFirst; //!< Start of range
|
||||||
Standard_Real myLast;
|
Standard_Real myLast; //!< End of range
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1763,7 +1763,7 @@ static Standard_Boolean InscribeInterval(const Standard_Real theUfTarget,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!theRange.GetMAX(anUpar))
|
if (!theRange.GetMax (anUpar))
|
||||||
{
|
{
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user