From 6bdc30e774170987343339c8eade4c75b13dd86b Mon Sep 17 00:00:00 2001 From: Noor Wachid <42460975+NoorWachid@users.noreply.github.com> Date: Fri, 15 May 2020 07:29:11 +0700 Subject: [PATCH] Rename Norm to Normalize To make it uniforms with Raylib's functions --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index bf1302632..9a18996d4 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -155,7 +155,7 @@ RMDEF float Lerp(float start, float end, float amount) } // 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); }