Pushed code to draw a plane

This commit is contained in:
Irlan
2019-06-04 19:38:43 -03:00
parent 552970cfe7
commit 43085c8cc1
4 changed files with 69 additions and 43 deletions

View File

@ -91,6 +91,10 @@ public:
void DrawSolidCapsule(const b3Vec3& p1, const b3Vec3& p2, float32 radius, const b3Color& color);
void DrawPlane(const b3Vec3& normal, const b3Vec3& center, float32 radius, const b3Color& color);
void DrawSolidPlane(const b3Vec3& normal, const b3Vec3& center, float32 radius, const b3Color& color);
void DrawAABB(const b3AABB3& aabb, const b3Color& color);
void DrawTransform(const b3Transform& xf);