mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
Merge pull request #58 from lioncash/clamp
Common: Add a clamp function to math_utils.h
This commit is contained in:
commit
59d512484a
1 changed files with 7 additions and 0 deletions
|
@ -6,11 +6,18 @@
|
||||||
|
|
||||||
#include "common/common.h"
|
#include "common/common.h"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace MathUtil
|
namespace MathUtil
|
||||||
{
|
{
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
inline T Clamp(const T val, const T& min, const T& max)
|
||||||
|
{
|
||||||
|
return std::max(min, std::min(max, val));
|
||||||
|
}
|
||||||
|
|
||||||
static const u64 DOUBLE_SIGN = 0x8000000000000000ULL,
|
static const u64 DOUBLE_SIGN = 0x8000000000000000ULL,
|
||||||
DOUBLE_EXP = 0x7FF0000000000000ULL,
|
DOUBLE_EXP = 0x7FF0000000000000ULL,
|
||||||
DOUBLE_FRAC = 0x000FFFFFFFFFFFFFULL,
|
DOUBLE_FRAC = 0x000FFFFFFFFFFFFFULL,
|
||||||
|
|
Loading…
Reference in a new issue