From dd59c1eb1015d87376825965516bd8bf171e1e63 Mon Sep 17 00:00:00 2001 From: Trinton Bullard Date: Wed, 28 Dec 2016 15:17:31 -0700 Subject: [PATCH] Fixed UTF-8 Error --- HandmadeMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HandmadeMath.h b/HandmadeMath.h index 22ed0ed..0859a0b 100644 --- a/HandmadeMath.h +++ b/HandmadeMath.h @@ -1686,7 +1686,7 @@ HMM_QuaternionFromEulerAxis(hmm_vec3 Axis, float AngleOfRotation) hmm_quaternion Result = {0}; Result.W = HMM_CosF(AngleOfRotation / 2.0f); - Result.XYZ = Axis * HMM_SinF(AngleOfRotation / 2.0f) / HMM_NormalizeVec3(Axis); + Result.XYZ = Axis * HMM_SinF(AngleOfRotation / 2.0f) / HMM_NormalizeVec3(Axis); return(Result); }