| View previous topic :: View next topic |
| Author |
Message |
coollofty
Joined: 16 Apr 2005 Posts: 21
|
Posted: Wed Jun 22, 2005 1:46 pm Post subject: The AddPolygon message |
|
|
WARNING MSG: "CollisionObjectAABBMesh::AddPolygon. Zero area polygon found. Ignoring." CONDITION FAILED: 0
Above is the message which copy from the output window of VisualStudio. Some problem I can not understand. What's the Zero area mean? And what's the 0 of Condition? |
|
| Back to top |
|
 |
luke Site Admin
Joined: 15 Oct 2004 Posts: 621
|
Posted: Wed Jun 22, 2005 1:58 pm Post subject: |
|
|
This happens if a polygon is either very small or very skinny.
If the surface area of a polygon is too small, it will be ignored by CollisionObjectAABBMesh.
The rest of the mesh should work fine, only these polygons will be ignored.
CONDITION FAILED: 0 isn't important.
It just means that the following was called.
TA_ASSERT_MSG(0, "CollisionObjectAABBMesh::AddPolygon. Zero area polygon found. Ignoring.") |
|
| Back to top |
|
 |
|