Blender V4.3
btConvex2dShape.cpp
Go to the documentation of this file.
1/*
2Bullet Continuous Collision Detection and Physics Library
3Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
4
5This software is provided 'as-is', without any express or implied warranty.
6In no event will the authors be held liable for any damages arising from the use of this software.
7Permission is granted to anyone to use this software for any purpose,
8including commercial applications, and to alter it and redistribute it freely,
9subject to the following restrictions:
10
111. 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.
122. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
133. This notice may not be removed or altered from any source distribution.
14*/
15
16#include "btConvex2dShape.h"
17
18btConvex2dShape::btConvex2dShape(btConvexShape* convexChildShape) : btConvexShape(), m_childConvexShape(convexChildShape)
19{
20 m_shapeType = CONVEX_2D_SHAPE_PROXYTYPE;
21}
22
23btConvex2dShape::~btConvex2dShape()
24{
25}
26
27btVector3 btConvex2dShape::localGetSupportingVertexWithoutMargin(const btVector3& vec) const
28{
29 return m_childConvexShape->localGetSupportingVertexWithoutMargin(vec);
30}
31
32void btConvex2dShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors, btVector3* supportVerticesOut, int numVectors) const
33{
34 m_childConvexShape->batchedUnitVectorGetSupportingVertexWithoutMargin(vectors, supportVerticesOut, numVectors);
35}
36
37btVector3 btConvex2dShape::localGetSupportingVertex(const btVector3& vec) const
38{
39 return m_childConvexShape->localGetSupportingVertex(vec);
40}
41
42void btConvex2dShape::calculateLocalInertia(btScalar mass, btVector3& inertia) const
43{
45 m_childConvexShape->calculateLocalInertia(mass, inertia);
46}
47
49void btConvex2dShape::getAabb(const btTransform& t, btVector3& aabbMin, btVector3& aabbMax) const
50{
51 m_childConvexShape->getAabb(t, aabbMin, aabbMax);
52}
53
54void btConvex2dShape::getAabbSlow(const btTransform& t, btVector3& aabbMin, btVector3& aabbMax) const
55{
56 m_childConvexShape->getAabbSlow(t, aabbMin, aabbMax);
57}
58
59void btConvex2dShape::setLocalScaling(const btVector3& scaling)
60{
61 m_childConvexShape->setLocalScaling(scaling);
62}
63
64const btVector3& btConvex2dShape::getLocalScaling() const
65{
66 return m_childConvexShape->getLocalScaling();
67}
68
69void btConvex2dShape::setMargin(btScalar margin)
70{
71 m_childConvexShape->setMargin(margin);
72}
73btScalar btConvex2dShape::getMargin() const
74{
75 return m_childConvexShape->getMargin();
76}
77
78int btConvex2dShape::getNumPreferredPenetrationDirections() const
79{
80 return m_childConvexShape->getNumPreferredPenetrationDirections();
81}
82
83void btConvex2dShape::getPreferredPenetrationDirection(int index, btVector3& penetrationVector) const
84{
85 m_childConvexShape->getPreferredPenetrationDirection(index, penetrationVector);
86}
@ CONVEX_2D_SHAPE_PROXYTYPE
btConvexShape()
not supported on IBM SDK, until we fix the alignment of btVector3
float btScalar
The btScalar type abstracts floating point numbers, to easily switch between double and single floati...
Definition btScalar.h:314
btTransform
The btTransform class supports rigid transforms with only translation and rotation and no scaling/she...
Definition btTransform.h:30