6 lines
87 B
GLSL
6 lines
87 B
GLSL
float quarticIn(float t) {
|
|
return pow(t, 4.0);
|
|
}
|
|
|
|
#pragma glslify: export(quarticIn)
|