Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp')
-rw-r--r--extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp b/extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp
index f2afb338166..d6bf5dba5b3 100644
--- a/extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp
+++ b/extern/bullet/Bullet/CollisionShapes/ConvexShape.cpp
@@ -33,12 +33,15 @@ void ConvexShape::setLocalScaling(const SimdVector3& scaling)
void ConvexShape::GetAabbSlow(const SimdTransform& trans,SimdVector3&minAabb,SimdVector3&maxAabb) const
{
- SimdScalar margin = 0.05f;
+ SimdScalar margin = GetMargin();
for (int i=0;i<3;i++)
{
SimdVector3 vec(0.f,0.f,0.f);
vec[i] = 1.f;
- SimdVector3 tmp = trans(LocalGetSupportingVertex(vec*trans.getBasis()));
+
+ SimdVector3 sv = LocalGetSupportingVertex(vec*trans.getBasis());
+
+ SimdVector3 tmp = trans(sv);
maxAabb[i] = tmp[i]+margin;
vec[i] = -1.f;
tmp = trans(LocalGetSupportingVertex(vec*trans.getBasis()));