28 #ifndef PXR_BASE_GF_RANGE1F_H
29 #define PXR_BASE_GF_RANGE1F_H
85 : _min(min), _max(max)
95 float GetMin()
const {
return _min; }
98 float GetMax()
const {
return _max; }
133 return (point >= _min && point <= _max);
162 return (range._max < _min || range._min > _max);
168 _FindMin(res._min,b._min);
169 _FindMax(res._max,b._max);
175 _FindMin(_min,b._min);
176 _FindMax(_max,b._max);
208 _FindMax(res._min,b._min);
209 _FindMin(res._max,b._max);
222 _FindMax(_min,b._min);
223 _FindMin(_max,b._max);
263 return *
this *= (1.0 / m);
268 return GfRange1f(_min + b._min, _max + b._max);
274 return GfRange1f(_min - b._max, _max - b._min);
293 return r * (1.0 / m);
303 return (_min == b._min && _max == b._max);
307 return !(*
this ==
b);
327 static void _FindMin(
float &dest,
float point) {
328 if (point < dest) dest = point;
332 static void _FindMax(
float &dest,
float point) {
333 if (point > dest) dest = point;
348 _max ==
float(other.
GetMax());
353 return !(*
this == other);
359 #endif // PXR_BASE_GF_RANGE1F_H
void SetMax(float max)
Sets the maximum value of the range.
double GetMin() const
Returns the minimum value of the range.
void ExtendBy(const GfRange1f &range)
bool IsInside(float point) const
*get result *(waiting if necessary)*A common idiom is to fire a bunch of sub tasks at the and then *wait for them to all complete We provide a helper class
GfRange1f(float min, float max)
This constructor initializes the minimum and maximum points.
GfRange1f & operator-=(const GfRange1f &b)
unary difference.
const GfRange1f & IntersectWith(const GfRange1f &b)
bool Contains(const GfRange1f &range) const
void ExtendBy(float point)
GfRange1f operator-(const GfRange1f &b) const
binary difference.
bool IsOutside(const GfRange1f &range) const
GLboolean GLboolean GLboolean GLboolean a
const GfRange1f & UnionWith(float b)
Extend this to include b.
static const size_t dimension
ImageBuf OIIO_API min(Image_or_Const A, Image_or_Const B, ROI roi={}, int nthreads=0)
void SetMin(float min)
Sets the minimum value of the range.
static GfRange1f GetUnion(const GfRange1f &a, const GfRange1f &b)
Returns the smallest GfRange1f which contains both a and b.
GfRange1f & operator+=(const GfRange1f &b)
unary sum.
static GfRange1f Intersection(const GfRange1f &a, const GfRange1f &b)
static GfRange1f GetIntersection(const GfRange1f &a, const GfRange1f &b)
Returns a GfRange1f that describes the intersection of a and b.
double GetMax() const
Returns the maximum value of the range.
IMATH_NAMESPACE::V2f float
const GfRange1f & Union(const GfRange1f &b)
GfRange1f operator+(const GfRange1f &b) const
binary sum.
float GetSize() const
Returns the size of the range.
bool operator!=(const GfRange1f &b) const
GLboolean GLboolean GLboolean b
bool IsEmpty() const
Returns whether the range is empty (max < min).
GfRange1f()
The default constructor creates an empty range.
float GetMin() const
Returns the minimum value of the range.
void SetEmpty()
Sets the range to an empty interval.
friend size_t hash_value(const GfRange1f &r)
hash.
float MinMaxType
Helper typedef.
GfRange1f & operator/=(double m)
unary division.
static size_t Combine(Args &&...args)
Produce a hash code by combining the hash codes of several objects.
float GetMidpoint() const
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
const GfRange1f & UnionWith(const GfRange1f &b)
Extend this to include b.
friend GfRange1f operator/(const GfRange1f &r, double m)
scalar divide.
float GetMax() const
Returns the maximum value of the range.
GF_API double GetDistanceSquared(float p) const
Compute the squared distance from a point to the range.
const GfRange1f & Intersection(const GfRange1f &b)
ImageBuf OIIO_API max(Image_or_Const A, Image_or_Const B, ROI roi={}, int nthreads=0)
#define PXR_NAMESPACE_CLOSE_SCOPE
GfRange1f & operator*=(double m)
unary multiply.
friend GfRange1f operator*(double m, const GfRange1f &r)
scalar multiply.
bool IsInside(const GfRange1f &range) const
bool Contains(float point) const
const GfRange1f & Union(float b)
GF_API std::ostream & operator<<(std::ostream &, GfRange1f const &)
static GfRange1f Union(const GfRange1f &a, const GfRange1f &b)
bool operator==(const GfRange1f &b) const
The min and max points must match exactly for equality.