feat(Tools/Vmapextractor): Improved vmap detail level by extracting w… (#4922)

This commit is contained in:
UltraNix
2021-04-05 11:51:51 +02:00
committed by GitHub
parent 1b4c36ec52
commit 0528e0b485
20 changed files with 514 additions and 369 deletions

View File

@@ -126,6 +126,13 @@ public:
}
};
class AaBox3D
{
public:
Vec3D min;
Vec3D max;
};
class Vec2D
{
public:
@@ -233,4 +240,9 @@ inline void rotate(float x0, float y0, float* x, float* y, float angle)
*y = xa * sinf(angle) + ya * cosf(angle) + y0;
}
struct Quaternion
{
float X, Y, Z, W;
};
#endif