More reimplementations

Move API to Zeus namespace
This commit is contained in:
2015-10-07 17:21:38 -07:00
parent 394a225062
commit 8012694fc7
33 changed files with 253 additions and 178 deletions

View File

@@ -1,6 +1,9 @@
#include <iostream>
#include <MathLib.hpp>
// This is only for testing, do NOT do this normally
using namespace Zeus;
int main()
{
assert(!CAABox({100, 100, 100}, {100, 100, 100}).invalid());
@@ -26,5 +29,7 @@ int main()
assert(test3.inside(test));
assert(!test4.inside(test));
std::cout << Math::round(1.5) << std::endl;
return 0;
}