Clamp fixed
WTF!? I'm 100% positive that I already did this fix. WTF!?
This commit is contained in:
parent
f69f3af23d
commit
c2226fa9d1
|
@ -337,7 +337,11 @@ namespace Utility
|
||||||
|
|
||||||
template<typename ValueType>
|
template<typename ValueType>
|
||||||
inline ValueType Clamp( const ValueType &value, const ValueType &min, const ValueType &max )
|
inline ValueType Clamp( const ValueType &value, const ValueType &min, const ValueType &max )
|
||||||
{ return value < min ? Max( value, max ) : min; }
|
{
|
||||||
|
if( value < min ) return min;
|
||||||
|
if( value > max ) return max;
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
template<typename ValueType>
|
template<typename ValueType>
|
||||||
inline ValueType Average( const ValueType &valueA, const ValueType &valueB )
|
inline ValueType Average( const ValueType &valueA, const ValueType &valueB )
|
||||||
|
|
Loading…
Reference in New Issue