forked from PixarAnimationStudios/OpenUSD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrange1d.h
340 lines (279 loc) · 10.1 KB
/
range1d.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
//
// Copyright 2016 Pixar
//
// Licensed under the Apache License, Version 2.0 (the "Apache License")
// with the following modification; you may not use this file except in
// compliance with the Apache License and the following modification to it:
// Section 6. Trademarks. is deleted and replaced with:
//
// 6. Trademarks. This License does not grant permission to use the trade
// names, trademarks, service marks, or product names of the Licensor
// and its affiliates, except as required to comply with Section 4(c) of
// the License and to reproduce the content of the NOTICE file.
//
// You may obtain a copy of the Apache License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the Apache License with the above modification is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the Apache License for the specific
// language governing permissions and limitations under the Apache License.
//
////////////////////////////////////////////////////////////////////////
// This file is generated by a script. Do not edit directly. Edit the
// range.template.h file to make changes.
#ifndef GF_RANGE1D_H
#define GF_RANGE1D_H
/// \file gf/range1d.h
/// \ingroup group_gf_BasicGeometry
#include "pxr/base/gf/traits.h"
#include <boost/functional/hash.hpp>
#include <cfloat>
#include <cstddef>
#include <iosfwd>
class GfRange1d;
class GfRange1f;
template <>
struct GfIsGfRange<class GfRange1d> { static const bool value = true; };
/// \class GfRange1d
/// \ingroup group_gf_BasicGeometry
///
/// Basic type: 1-dimensional floating point range.
///
/// This class represents a 1-dimensional range (or interval) All
/// operations are component-wise and conform to interval mathematics. An
/// empty range is one where max < min.
/// The default empty is [FLT_MAX,-FLT_MAX]
class GfRange1d
{
public:
/// Helper typedef.
typedef double MinMaxType;
static const size_t dimension = 1;
typedef MinMaxType ScalarType;
/// Sets the range to an empty interval
// TODO check whether this can be deprecated.
void inline SetEmpty() {
_min = FLT_MAX;
_max = -FLT_MAX;
}
/// The default constructor creates an empty range.
GfRange1d() {
SetEmpty();
}
/// This constructor initializes the minimum and maximum points.
GfRange1d(double min, double max)
: _min(min), _max(max)
{
}
/// Returns the minimum value of the range.
double GetMin() const { return _min; }
/// Returns the maximum value of the range.
double GetMax() const { return _max; }
/// Returns the size of the range.
double GetSize() const { return _max - _min; }
/// Sets the minimum value of the range.
void SetMin(double min) { _min = min; }
/// Sets the maximum value of the range.
void SetMax(double max) { _max = max; }
/// Returns whether the range is empty (max < min).
bool IsEmpty() const {
return _min > _max;
}
/// Modifies the range if necessary to surround the given value.
/// \deprecated Use UnionWith() instead.
void ExtendBy(double point) { UnionWith(point); }
/// Modifies the range if necessary to surround the given range.
/// \deprecated Use UnionWith() instead.
void ExtendBy(const GfRange1d &range) { UnionWith(range); }
/// Returns true if the \p point is located inside the range. As with all
/// operations of this type, the range is assumed to include its extrema.
bool Contains(double point) const {
return (point >= _min && point <= _max);
}
/// Returns true if the \p range is located entirely inside the range. As
/// with all operations of this type, the ranges are assumed to include
/// their extrema.
bool Contains(const GfRange1d &range) const {
return Contains(range._min) && Contains(range._max);
}
/// Returns true if the \p point is located inside the range. As with all
/// operations of this type, the range is assumed to include its extrema.
/// \deprecated Use Contains() instead.
bool IsInside(double point) const {
return Contains(point);
}
/// Returns true if the \p range is located entirely inside the range. As
/// with all operations of this type, the ranges are assumed to include
/// their extrema.
/// \deprecated Use Contains() instead.
bool IsInside(const GfRange1d &range) const {
return Contains(range);
}
/// Returns true if the \p range is located entirely outside the range. As
/// with all operations of this type, the ranges are assumed to include
/// their extrema.
bool IsOutside(const GfRange1d &range) const {
return (range._max < _min || range._min > _max);
}
/// Returns the smallest \c GfRange1d which contains both \p a and \p b.
static GfRange1d GetUnion(const GfRange1d &a, const GfRange1d &b) {
GfRange1d res = a;
_FindMin(res._min,b._min);
_FindMax(res._max,b._max);
return res;
}
/// Extend \p this to include \p b.
const GfRange1d &UnionWith(const GfRange1d &b) {
_FindMin(_min,b._min);
_FindMax(_max,b._max);
return *this;
}
/// Extend \p this to include \p b.
const GfRange1d &UnionWith(double b) {
_FindMin(_min,b);
_FindMax(_max,b);
return *this;
}
/// Returns the smallest \c GfRange1d which contains both \p a and \p b
/// \deprecated Use GetUnion() instead.
static GfRange1d Union(const GfRange1d &a, const GfRange1d &b) {
return GetUnion(a, b);
}
/// Extend \p this to include \p b.
/// \deprecated Use UnionWith() instead.
const GfRange1d &Union(const GfRange1d &b) {
return UnionWith(b);
}
/// Extend \p this to include \p b.
/// \deprecated Use UnionWith() instead.
const GfRange1d &Union(double b) {
return UnionWith(b);
}
/// Returns a \c GfRange1d that describes the intersection of \p a and \p b.
static GfRange1d GetIntersection(const GfRange1d &a, const GfRange1d &b) {
GfRange1d res = a;
_FindMax(res._min,b._min);
_FindMin(res._max,b._max);
return res;
}
/// Returns a \c GfRange1d that describes the intersection of \p a and \p b.
/// \deprecated Use GetIntersection() instead.
static GfRange1d Intersection(const GfRange1d &a, const GfRange1d &b) {
return GetIntersection(a, b);
}
/// Modifies this range to hold its intersection with \p b and returns the
/// result
const GfRange1d &IntersectWith(const GfRange1d &b) {
_FindMax(_min,b._min);
_FindMin(_max,b._max);
return *this;
}
/// Modifies this range to hold its intersection with \p b and returns the
/// result.
/// \deprecated Use IntersectWith() instead.
const GfRange1d &Intersection(const GfRange1d &b) {
return IntersectWith(b);
}
/// unary sum.
GfRange1d operator +=(const GfRange1d &b) {
_min += b._min;
_max += b._max;
return *this;
}
/// unary difference.
GfRange1d operator -=(const GfRange1d &b) {
_min -= b._max;
_max -= b._min;
return *this;
}
/// unary multiply.
GfRange1d operator *=(double m) {
if (m > 0) {
_min *= m;
_max *= m;
} else {
double tmp = _min;
_min = _max * m;
_max = tmp * m;
}
return *this;
}
/// unary division.
GfRange1d operator /=(double m) {
return *this *= (1.0 / m);
}
/// binary sum.
GfRange1d operator +(const GfRange1d &b) const {
return GfRange1d(_min + b._min, _max + b._max);
}
/// binary difference.
GfRange1d operator -(const GfRange1d &b) const {
return GfRange1d(_min - b._max, _max - b._min);
}
/// scalar multiply.
friend GfRange1d operator *(double m, const GfRange1d &r) {
return (m > 0 ?
GfRange1d(r._min*m, r._max*m) :
GfRange1d(r._max*m, r._min*m));
}
/// scalar multiply.
friend GfRange1d operator *(const GfRange1d &r, double m) {
return (m > 0 ?
GfRange1d(r._min*m, r._max*m) :
GfRange1d(r._max*m, r._min*m));
}
/// scalar divide.
friend GfRange1d operator /(const GfRange1d &r, double m) {
return r * (1.0 / m);
}
/// hash.
friend inline size_t hash_value(const GfRange1d &r) {
size_t h = 0;
boost::hash_combine(h, r._min);
boost::hash_combine(h, r._max);
return h;
}
/// The min and max points must match exactly for equality.
bool operator ==(const GfRange1d &b) const {
return (_min == b._min && _max == b._max);
}
bool operator !=(const GfRange1d &b) const {
return !(*this == b);
}
/// Compare this range to a GfRange1f.
///
/// The values must match exactly and it does exactly what you might
/// expect when comparing float and double values.
inline bool operator ==(const GfRange1f& other) const;
inline bool operator !=(const GfRange1f& other) const;
/// Compute the squared distance from a point to the range.
double GetDistanceSquared(double p) const;
private:
/// Minimum and maximum points.
double _min, _max;
/// Extends minimum point if necessary to contain given point.
static void _FindMin(double &dest, double point) {
if (point < dest) dest = point;
}
/// Extends maximum point if necessary to contain given point.
static void _FindMax(double &dest, double point) {
if (point > dest) dest = point;
}
};
/// Output a GfRange1d.
/// \ingroup group_gf_DebuggingOutput
std::ostream& operator<<(std::ostream &, GfRange1d const &);
#include "pxr/base/gf/range1f.h"
inline bool
GfRange1d::operator ==(const GfRange1f& other) const {
return _min == double(other.GetMin()) &&
_max == double(other.GetMax());
}
inline bool
GfRange1d::operator !=(const GfRange1f& other) const {
return !(*this == other);
}
#endif // GF_RANGE1D_H