diff options
| author | Ray <[email protected]> | 2024-06-30 11:37:58 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-06-30 11:37:58 +0200 |
| commit | 1e1061d5c7582090df0851c08359d7c7847f9559 (patch) | |
| tree | 8e5d77c6507a893314d6383e0041450dccc79e22 /src/rlgl.h | |
| parent | 13e309251184343b67773d16e6e264c7cac7c280 (diff) | |
| download | raylib-1e1061d5c7582090df0851c08359d7c7847f9559.tar.gz raylib-1e1061d5c7582090df0851c08359d7c7847f9559.zip | |
REVIEWED: Formatting, follow raylib coding conventions
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1560,7 +1560,7 @@ void rlNormal3f(float x, float y, float z) float length = sqrtf(normalx*normalx + normaly*normaly + normalz*normalz); if (length != 0.0f) { - float ilength = 1.0f / length; + float ilength = 1.0f/length; normalx *= ilength; normaly *= ilength; normalz *= ilength; |
