2017-08-01 14:30:58 +02:00
|
|
|
/*
|
|
|
|
Bullet Continuous Collision Detection and Physics Library
|
|
|
|
Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
In no event will the authors be held liable for any damages arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it freely,
|
|
|
|
subject to the following restrictions:
|
|
|
|
|
|
|
|
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.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BT_OBB_TRIANGLE_MINKOWSKI_H
|
|
|
|
#define BT_OBB_TRIANGLE_MINKOWSKI_H
|
|
|
|
|
|
|
|
#include "btConvexShape.h"
|
|
|
|
#include "btBoxShape.h"
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
ATTRIBUTE_ALIGNED16(class)
|
|
|
|
btTriangleShape : public btPolyhedralConvexShape
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
public:
|
2019-01-03 14:26:51 +01:00
|
|
|
BT_DECLARE_ALIGNED_ALLOCATOR();
|
2017-08-01 14:30:58 +02:00
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 m_vertices1[3];
|
2017-08-01 14:30:58 +02:00
|
|
|
|
|
|
|
virtual int getNumVertices() const
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
btVector3& getVertexPtr(int index)
|
|
|
|
{
|
|
|
|
return m_vertices1[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
const btVector3& getVertexPtr(int index) const
|
|
|
|
{
|
|
|
|
return m_vertices1[index];
|
|
|
|
}
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void getVertex(int index, btVector3& vert) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
vert = m_vertices1[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int getNumEdges() const
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
2019-01-03 14:26:51 +01:00
|
|
|
|
|
|
|
virtual void getEdge(int i, btVector3& pa, btVector3& pb) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
getVertex(i, pa);
|
|
|
|
getVertex((i + 1) % 3, pb);
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void getAabb(const btTransform& t, btVector3& aabbMin, btVector3& aabbMax) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
// btAssert(0);
|
|
|
|
getAabbSlow(t, aabbMin, aabbMax);
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 localGetSupportingVertexWithoutMargin(const btVector3& dir) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 dots = dir.dot3(m_vertices1[0], m_vertices1[1], m_vertices1[2]);
|
|
|
|
return m_vertices1[dots.maxAxis()];
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors, btVector3* supportVerticesOut, int numVectors) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
for (int i = 0; i < numVectors; i++)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
const btVector3& dir = vectors[i];
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 dots = dir.dot3(m_vertices1[0], m_vertices1[1], m_vertices1[2]);
|
|
|
|
supportVerticesOut[i] = m_vertices1[dots.maxAxis()];
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btTriangleShape() : btPolyhedralConvexShape()
|
|
|
|
{
|
2017-08-01 14:30:58 +02:00
|
|
|
m_shapeType = TRIANGLE_SHAPE_PROXYTYPE;
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btTriangleShape(const btVector3& p0, const btVector3& p1, const btVector3& p2) : btPolyhedralConvexShape()
|
|
|
|
{
|
2017-08-01 14:30:58 +02:00
|
|
|
m_shapeType = TRIANGLE_SHAPE_PROXYTYPE;
|
2019-01-03 14:26:51 +01:00
|
|
|
m_vertices1[0] = p0;
|
|
|
|
m_vertices1[1] = p1;
|
|
|
|
m_vertices1[2] = p2;
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void getPlane(btVector3 & planeNormal, btVector3 & planeSupport, int i) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
getPlaneEquation(i, planeNormal, planeSupport);
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual int getNumPlanes() const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void calcNormal(btVector3 & normal) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
normal = (m_vertices1[1] - m_vertices1[0]).cross(m_vertices1[2] - m_vertices1[0]);
|
2017-08-01 14:30:58 +02:00
|
|
|
normal.normalize();
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void getPlaneEquation(int i, btVector3& planeNormal, btVector3& planeSupport) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
(void)i;
|
|
|
|
calcNormal(planeNormal);
|
|
|
|
planeSupport = m_vertices1[0];
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void calculateLocalInertia(btScalar mass, btVector3 & inertia) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
(void)mass;
|
|
|
|
btAssert(0);
|
2019-01-03 14:26:51 +01:00
|
|
|
inertia.setValue(btScalar(0.), btScalar(0.), btScalar(0.));
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual bool isInside(const btVector3& pt, btScalar tolerance) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
btVector3 normal;
|
|
|
|
calcNormal(normal);
|
|
|
|
//distance to plane
|
|
|
|
btScalar dist = pt.dot(normal);
|
|
|
|
btScalar planeconst = m_vertices1[0].dot(normal);
|
|
|
|
dist -= planeconst;
|
|
|
|
if (dist >= -tolerance && dist <= tolerance)
|
|
|
|
{
|
|
|
|
//inside check on edge-planes
|
|
|
|
int i;
|
2019-01-03 14:26:51 +01:00
|
|
|
for (i = 0; i < 3; i++)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 pa, pb;
|
|
|
|
getEdge(i, pa, pb);
|
|
|
|
btVector3 edge = pb - pa;
|
2017-08-01 14:30:58 +02:00
|
|
|
btVector3 edgeNormal = edge.cross(normal);
|
|
|
|
edgeNormal.normalize();
|
2019-01-03 14:26:51 +01:00
|
|
|
btScalar dist = pt.dot(edgeNormal);
|
2017-08-01 14:30:58 +02:00
|
|
|
btScalar edgeConst = pa.dot(edgeNormal);
|
|
|
|
dist -= edgeConst;
|
|
|
|
if (dist < -tolerance)
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-03 14:26:51 +01:00
|
|
|
|
2017-08-01 14:30:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-03 14:26:51 +01:00
|
|
|
//debugging
|
|
|
|
virtual const char* getName() const
|
|
|
|
{
|
|
|
|
return "Triangle";
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual int getNumPreferredPenetrationDirections() const
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
virtual void getPreferredPenetrationDirection(int index, btVector3& penetrationVector) const
|
|
|
|
{
|
|
|
|
calcNormal(penetrationVector);
|
|
|
|
if (index)
|
|
|
|
penetrationVector *= btScalar(-1.);
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
};
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
#endif //BT_OBB_TRIANGLE_MINKOWSKI_H
|