From 284e917bbbd9d785058e7939c252c67eed3cb6a5 Mon Sep 17 00:00:00 2001 From: Trinton Bullard Date: Thu, 8 Dec 2016 22:47:41 -0700 Subject: [PATCH] Cleaned HandmadeMath.cpp --- test/HandmadeMath.cpp | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/test/HandmadeMath.cpp b/test/HandmadeMath.cpp index 769275e..7bb4719 100644 --- a/test/HandmadeMath.cpp +++ b/test/HandmadeMath.cpp @@ -4,23 +4,4 @@ #define HANDMADE_MATH_NO_INLINE #define GB_MATH_IMPLEMENTATION #include "../HandmadeMath.h" -#include "../gb_math.h" - -int main() { - - hmm_quaternion q1 = { 1,0,0,0 }; - hmm_quaternion q2 = { 0,1,0,0 }; - - gbQuat q3 = { 1,0,0,0 }; - gbQuat q4 = { 0,1,0,0 }; - gbQuat result2 = { 0 }; - - float time = 0.5f; - - hmm_quaternion Result = HMM_Slerp(q1, q2, time); - gb_quat_slerp(&result2, q3, q4, time); - - - -return 0; -} \ No newline at end of file +#include "../gb_math.h" \ No newline at end of file