Added many comments, and changed function names for wrapper functions.

This commit is contained in:
rude
2009-08-09 21:08:55 +02:00
parent f2adfd53f2
commit ba1a75e547
103 changed files with 2608 additions and 2391 deletions
+2 -5
View File
@@ -21,12 +21,9 @@
#include "Matrix.h"
// STD
#include <cstring>
#include <cstring> // memcpy
#include <cmath>
// LOVE
#include "Vector.h"
namespace love
{
@@ -80,7 +77,7 @@ namespace love
return t;
}
void Matrix::operator *= (const Matrix & m) const
void Matrix::operator *= (const Matrix & m)
{
Matrix t = (*this) * m;
memcpy((void*)this->e, (void*)t.e, sizeof(float)*16);