zeus/test/main.cpp

39 lines
1.2 KiB
C++
Raw Normal View History

2015-08-31 21:27:09 +00:00
#include <iostream>
2015-10-12 00:33:42 +00:00
#include <iomanip>
2015-08-31 21:27:09 +00:00
#include <MathLib.hpp>
// This is only for testing, do NOT do this normally
using namespace Zeus;
2015-08-31 21:27:09 +00:00
int main()
{
assert(!CAABox({100, 100, 100}, {100, 100, 100}).invalid());
assert(CAABox().invalid());
CVector3f vec{320, 632162.f, 800.f};
assert(vec.canBeNormalized());
assert(!vec.isZero());
assert(CVector3f().isZero());
assert(!vec.normalized().canBeNormalized());
float blarg = 5.f;
CVector3f t{100, 100, 200};
2015-10-12 00:33:42 +00:00
blarg = Math::clamp(0.f, blarg, 1.f);
2015-08-31 21:27:09 +00:00
CAABox test{{-100, -100, -100}, {100, 100, 100}};
CAABox test2{{-100, -100, -100}, {100, 100, 100}};
CAABox test3{{-50, -50, -50}, {50, 50, 50}};
CAABox test4{{-50, -50, -105}, {50, 50, 105}};
CVector3f point(-90, 67, -105);
CVector3f closestPoint = test.closestPointAlongVector(point);
2015-10-12 00:33:42 +00:00
CVector3d doubleVec(100, -100, -200);
2015-08-31 21:27:09 +00:00
assert(t.isEqu(t));
assert(test.inside(test));
assert(test2.inside(test));
assert(test3.inside(test));
assert(!test4.inside(test));
2015-10-12 00:33:42 +00:00
std::cout << std::setprecision(16) << (double)Math::fastArcCosR(1.802073) << std::endl;
std::cout << Math::floorPowerOfTwo(256) << std::endl;
2015-08-31 21:27:09 +00:00
return 0;
}