[1963] | 1 | /* |
---|
| 2 | * Box-Box collision detection re-distributed under the ZLib license with permission from Russell L. Smith |
---|
| 3 | * Original version is from Open Dynamics Engine, Copyright (C) 2001,2002 Russell L. Smith. |
---|
| 4 | * All rights reserved. Email: russ@q12.org Web: www.q12.org |
---|
| 5 | |
---|
| 6 | Bullet Continuous Collision Detection and Physics Library |
---|
| 7 | Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ |
---|
| 8 | |
---|
| 9 | This software is provided 'as-is', without any express or implied warranty. |
---|
| 10 | In no event will the authors be held liable for any damages arising from the use of this software. |
---|
| 11 | Permission is granted to anyone to use this software for any purpose, |
---|
| 12 | including commercial applications, and to alter it and redistribute it freely, |
---|
| 13 | subject to the following restrictions: |
---|
| 14 | |
---|
| 15 | 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. |
---|
| 16 | 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
---|
| 17 | 3. This notice may not be removed or altered from any source distribution. |
---|
| 18 | */ |
---|
[8393] | 19 | #ifndef BT_BOX_BOX_DETECTOR_H |
---|
| 20 | #define BT_BOX_BOX_DETECTOR_H |
---|
[1963] | 21 | |
---|
| 22 | |
---|
| 23 | class btBoxShape; |
---|
| 24 | #include "BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h" |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | /// btBoxBoxDetector wraps the ODE box-box collision detector |
---|
| 28 | /// re-distributed under the Zlib license with permission from Russell L. Smith |
---|
| 29 | struct btBoxBoxDetector : public btDiscreteCollisionDetectorInterface |
---|
| 30 | { |
---|
| 31 | btBoxShape* m_box1; |
---|
| 32 | btBoxShape* m_box2; |
---|
| 33 | |
---|
| 34 | public: |
---|
| 35 | |
---|
| 36 | btBoxBoxDetector(btBoxShape* box1,btBoxShape* box2); |
---|
| 37 | |
---|
| 38 | virtual ~btBoxBoxDetector() {}; |
---|
| 39 | |
---|
| 40 | virtual void getClosestPoints(const ClosestPointInput& input,Result& output,class btIDebugDraw* debugDraw,bool swapResults=false); |
---|
| 41 | |
---|
| 42 | }; |
---|
| 43 | |
---|
| 44 | #endif //BT_BOX_BOX_DETECTOR_H |
---|