Last active
October 3, 2024 09:46
-
-
Save ayamflow/b0bbf96ed9b33667f39fd1008c2cb483 to your computer and use it in GitHub Desktop.
Cheap parabola in GLSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Doesn't require pow() | |
// Not smoothed i.e. like a triangle function | |
float linearParabola(float x) { | |
return 1.0 - abs(x * 2.0 - 1.0); | |
} | |
// Slightly smoothed, no math function | |
float parabola(float x) { | |
return 4.0 * x * (1.0 - x); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment