[1963] | 1 | /* |
---|
| 2 | Bullet Continuous Collision Detection and Physics Library |
---|
| 3 | Copyright (c) 2003-2008 Erwin Coumans http://continuousphysics.com/Bullet/ |
---|
| 4 | |
---|
| 5 | This software is provided 'as-is', without any express or implied warranty. |
---|
| 6 | In no event will the authors be held liable for any damages arising from the |
---|
| 7 | use of this software. |
---|
| 8 | Permission is granted to anyone to use this software for any purpose, |
---|
| 9 | including commercial applications, and to alter it and redistribute it |
---|
| 10 | freely, |
---|
| 11 | subject to the following restrictions: |
---|
| 12 | |
---|
| 13 | 1. The origin of this software must not be misrepresented; you must not |
---|
| 14 | claim that you wrote the original software. If you use this software in a |
---|
| 15 | product, an acknowledgment in the product documentation would be appreciated |
---|
| 16 | but is not required. |
---|
| 17 | 2. Altered source versions must be plainly marked as such, and must not be |
---|
| 18 | misrepresented as being the original software. |
---|
| 19 | 3. This notice may not be removed or altered from any source distribution. |
---|
| 20 | */ |
---|
| 21 | |
---|
| 22 | /* |
---|
| 23 | GJK-EPA collision solver by Nathanael Presson, 2008 |
---|
| 24 | */ |
---|
| 25 | #ifndef _68DA1F85_90B7_4bb0_A705_83B4040A75C6_ |
---|
| 26 | #define _68DA1F85_90B7_4bb0_A705_83B4040A75C6_ |
---|
| 27 | #include "BulletCollision/CollisionShapes/btConvexShape.h" |
---|
| 28 | |
---|
| 29 | ///btGjkEpaSolver contributed under zlib by Nathanael Presson |
---|
| 30 | struct btGjkEpaSolver2 |
---|
| 31 | { |
---|
| 32 | struct sResults |
---|
| 33 | { |
---|
| 34 | enum eStatus |
---|
| 35 | { |
---|
| 36 | Separated, /* Shapes doesnt penetrate */ |
---|
| 37 | Penetrating, /* Shapes are penetrating */ |
---|
| 38 | GJK_Failed, /* GJK phase fail, no big issue, shapes are probably just 'touching' */ |
---|
| 39 | EPA_Failed /* EPA phase fail, bigger problem, need to save parameters, and debug */ |
---|
| 40 | } status; |
---|
| 41 | btVector3 witnesses[2]; |
---|
| 42 | btVector3 normal; |
---|
| 43 | btScalar distance; |
---|
| 44 | }; |
---|
| 45 | |
---|
| 46 | static int StackSizeRequirement(); |
---|
| 47 | |
---|
| 48 | static bool Distance( const btConvexShape* shape0,const btTransform& wtrs0, |
---|
| 49 | const btConvexShape* shape1,const btTransform& wtrs1, |
---|
| 50 | const btVector3& guess, |
---|
| 51 | sResults& results); |
---|
| 52 | |
---|
| 53 | static bool Penetration(const btConvexShape* shape0,const btTransform& wtrs0, |
---|
| 54 | const btConvexShape* shape1,const btTransform& wtrs1, |
---|
| 55 | const btVector3& guess, |
---|
| 56 | sResults& results, |
---|
| 57 | bool usemargins=true); |
---|
| 58 | |
---|
| 59 | static btScalar SignedDistance( const btVector3& position, |
---|
| 60 | btScalar margin, |
---|
| 61 | const btConvexShape* shape, |
---|
| 62 | const btTransform& wtrs, |
---|
| 63 | sResults& results); |
---|
| 64 | |
---|
| 65 | static bool SignedDistance( const btConvexShape* shape0,const btTransform& wtrs0, |
---|
| 66 | const btConvexShape* shape1,const btTransform& wtrs1, |
---|
| 67 | const btVector3& guess, |
---|
| 68 | sResults& results); |
---|
| 69 | }; |
---|
| 70 | |
---|
| 71 | #endif |
---|