Cleaned up the code, fixed C compliance, and added operator overloading for multiplying matrix's

This commit is contained in:
Zak Strange
2016-03-14 14:09:55 -07:00
parent 3166c36452
commit 41d2f2e5b6
3 changed files with 309 additions and 276 deletions

View File

@@ -21,8 +21,7 @@ main(int ArgC, char **ArgV)
mat4 ResultMatrix = MultiplyMat4(Matrix1, Matrix2);
mat4 ResultMatrix2 = Matrix1 * Matrix2;
_getch();
return(0);
}