Added DebugDrawer::DrawLine and DebugDrawer::DrawPoints

Former-commit-id: e1b2278a7c11ebfc8050bad23aef7a9a4cbf3c25
This commit is contained in:
Lynix
2014-07-10 10:12:25 +02:00
parent 3dac383486
commit ebb13d3bf2
2 changed files with 47 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ class NAZARA_API NzDebugDrawer
static void Draw(const NzSkeleton* skeleton);
static void DrawBinormals(const NzStaticMesh* subMesh);
static void DrawCone(const NzVector3f& origin, const NzQuaternionf& rotation, float angle, float length);
static void DrawLine(const NzVector3f& p1, const NzVector3f& p2);
static void DrawPoints(const NzVector3f* ptr, unsigned int pointCount);
static void DrawNormals(const NzStaticMesh* subMesh);
static void DrawTangents(const NzStaticMesh* subMesh);