diff options
Diffstat (limited to 'src/common/math_util.h')
| -rw-r--r-- | src/common/math_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 0b1400b41..4b0910741 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h | |||
| @@ -11,6 +11,10 @@ | |||
| 11 | namespace MathUtil | 11 | namespace MathUtil |
| 12 | { | 12 | { |
| 13 | 13 | ||
| 14 | inline bool IntervalsIntersect(unsigned start0, unsigned length0, unsigned start1, unsigned length1) { | ||
| 15 | return (std::max(start0, start1) <= std::min(start0 + length0, start1 + length1)); | ||
| 16 | } | ||
| 17 | |||
| 14 | template<typename T> | 18 | template<typename T> |
| 15 | inline T Clamp(const T val, const T& min, const T& max) | 19 | inline T Clamp(const T val, const T& min, const T& max) |
| 16 | { | 20 | { |