Draw solid stuff inside b3World
This commit is contained in:
		| @@ -95,24 +95,24 @@ public : | ||||
| 	// Draw a solid circle with center, normal, and radius. | ||||
| 	virtual void DrawSolidCircle(const b3Vec3& normal, const b3Vec3& center, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a sphere with center and radius. | ||||
| 	virtual void DrawSphere(const b3Vec3& center, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a solid sphere with center and radius. | ||||
| 	virtual void DrawSolidSphere(const b3Vec3& center, float32 radius, const b3Color& color) = 0; | ||||
| 	 | ||||
| 	// Draw a capsule with segment and radius. | ||||
| 	virtual void DrawCapsule(const b3Vec3& p1, const b3Vec3& p2, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a solid capsule with segment and radius. | ||||
| 	virtual void DrawSolidCapsule(const b3Vec3& p1, const b3Vec3& p2, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a plane with center, normal and radius. | ||||
| 	virtual void DrawPlane(const b3Vec3& center, const b3Vec3& normal, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a solid plane with center, normal and radius. | ||||
| 	virtual void DrawSolidPlane(const b3Vec3& center, const b3Vec3& normal, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a sphere with center, and radius. | ||||
| 	virtual void DrawSphere(const b3Vec3& center, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a solid sphere with center, radius, and rotation. | ||||
| 	virtual void DrawSolidSphere(const b3Vec3& center, float32 radius, const b3Mat33& rotation, const b3Color& color) = 0; | ||||
| 	 | ||||
| 	// Draw a capsule with segment, and radius. | ||||
| 	virtual void DrawCapsule(const b3Vec3& p1, const b3Vec3& p2, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a solid capsule with segment, and radius. | ||||
| 	virtual void DrawSolidCapsule(const b3Vec3& p1, const b3Vec3& p2, float32 radius, const b3Color& color) = 0; | ||||
|  | ||||
| 	// Draw a AABB. | ||||
| 	virtual void DrawAABB(const b3AABB3& aabb, const b3Color& color) = 0; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user