mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 08:23:53 +00:00
13 lines
172 B
Text
13 lines
172 B
Text
|
#ifndef LIB_UTIL_QUICKSTEP
|
||
|
#define LIB_UTIL_QUICKSTEP
|
||
|
|
||
|
float quickstep(float x)
|
||
|
{
|
||
|
x = clamp(x, 0.0, 1.0);
|
||
|
x = 1.0 - x*x;
|
||
|
x = 1.0 - x*x;
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
#endif
|