6 lines
113 B
GLSL
6 lines
113 B
GLSL
float quarticOut(float t) {
|
|
return pow(t - 1.0, 3.0) * (1.0 - t) + 1.0;
|
|
}
|
|
|
|
#pragma glslify: export(quarticOut)
|