I generated a btCollisionShape object via
Code: Select all
btCollisionShape * collShape = new btSphereShape(1.0f);
Code: Select all
collShape->getBoundingSphere(center, radius)
I don't see how this makes sense for a collision shape that results from a perfect sphere. Is there a reason for the bounding box calculation, even though the body in question is a sphere?