001    package physics3d;
002    
003    /**
004     * ShapeClassification is a tag that describes a PhysicsShape
005     */
006    
007    public enum ShapeClassification {
008            LATERAL_CYLINDER,
009            PLANE_CIRCLE,
010            PLANE_POLYGON,
011            SPHERE,
012            TORUS,
013            PLANE
014    }