Rename Norm to Normalize

To make it uniforms with Raylib's functions
This commit is contained in:
Noor Wachid 2020-05-15 07:29:11 +07:00 committed by GitHub
parent f88638fdaa
commit 6bdc30e774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ RMDEF float Lerp(float start, float end, float amount)
} }
// Normalize input value within input range // Normalize input value within input range
RMDEF float Norm(float value, float start, float end) RMDEF float Normalize(float value, float start, float end)
{ {
return (value - start) / (end - start); return (value - start) / (end - start);
} }