Created
May 22, 2021 20:41
-
-
Save behreajj/fe4034ba452c0ff52d6ecba43609c254 to your computer and use it in GitHub Desktop.
Floor Mod
This file contains hidden or 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
shader modScalar( | |
float A = 0.0, | |
float B = 1.0, | |
output float Mod = 0.0) { | |
Mod = mod(A, B); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment