Efficient geometry

More high level than the CardMaker? Well, you can always load a card model from an egg file.

The BoundingVolume classes will tell you if two shapes might be intersecting, but can’t reliably tell you that they are. The CollisionSolid classes can definitively tell you whether two shapes are intersecting, but will report only a single point of intersection, not the geometry of the intersecting region. You’ll have to implement your own intersection algorithms, or find an existing library that does it for you, in order to get this information.

David