mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-29 08:33:47 +00:00
feat(Tools/Vmapextractor): Improved vmap detail level by extracting w… (#4922)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user