Created
November 22, 2017 22:34
-
-
Save glyphx/7f0ba10307326fbbd3ecbbca3143b014 to your computer and use it in GitHub Desktop.
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
t2 = +2.0 * (w * w + z * z) - 1 | |
t2 = +1.0 if t2 > +1.0 else t2 | |
t2 = -1.0 if t2 < -1.0 else t2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment