Removed AxisAlignedBox (Replaced by BoundingBox)

Former-commit-id: 931dd6710caf49aeaede51efe209d714f080c44b
This commit is contained in:
Lynix
2013-02-21 18:28:32 +01:00
parent 2e6b864cad
commit 1b5215d4c2
22 changed files with 561 additions and 768 deletions

View File

@@ -9,9 +9,10 @@
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/Color.hpp>
#include <Nazara/Math/AxisAlignedBox.hpp>
#include <Nazara/Math/BoundingBox.hpp>
#include <Nazara/Math/Cube.hpp>
#include <Nazara/Math/Frustum.hpp>
#include <Nazara/Math/OrientedCube.hpp>
#include <Nazara/Utility/SubMesh.hpp>
class NzSkeleton;
@@ -19,11 +20,12 @@ class NzSkeleton;
class NAZARA_API NzDebugDrawer
{
public:
static void Draw(const NzAxisAlignedBoxf& aabb);
static void Draw(const NzBoundingBoxf& box);
static void Draw(const NzCubef& cube);
static void Draw(const NzCubei& cube);
static void Draw(const NzCubeui& cube);
static void Draw(const NzFrustumf& frustum);
static void Draw(const NzOrientedCubef& orientedCube);
static void Draw(const NzSkeleton* skeleton);
static void DrawNormals(const NzSubMesh* subMesh);
static void DrawTangents(const NzSubMesh* subMesh);