Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2008, 5:40:38 PM (16 years ago)
Author:
rgrieder
Message:

Downgraded Bullet to latest tagged version: 2.72
That should give us more stability.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics/src/bullet/BulletCollision/CollisionShapes/btSphereShape.cpp

    r1963 r1972  
    1818
    1919#include "LinearMath/btQuaternion.h"
     20
     21
     22btSphereShape ::btSphereShape (btScalar radius) : btConvexInternalShape ()
     23{
     24        m_shapeType = SPHERE_SHAPE_PROXYTYPE;
     25        m_implicitShapeDimensions.setX(radius);
     26        m_collisionMargin = radius;
     27}
    2028
    2129btVector3       btSphereShape::localGetSupportingVertexWithoutMargin(const btVector3& vec)const
Note: See TracChangeset for help on using the changeset viewer.