I'm currently deciding which of the convex hull collision shapes to use for my objects, and have surmised the following:
* btConvexHullShape is the most efficient
* btConvexTriangleMeshShape is less efficient, but doesn't duplicate triangle data - usage seems to be discouraged!
* btConvexPointCloudShape also doesn't duplicate the vertices, but (I'm guessing) is more efficient that btConvexTriangleMeshShape
Is that correct? If so, is there any reason to use btConvexHullShape, or btConvexTriangleMeshShape, rather than btConvexPointCloudShape?
Thanks

Kate