The shape information used by a StaticGroup. Unlike most shapes, a StaticGroupShape cannot be shared between multiple StaticGroups; a StaticGroupShape is linked to a single StaticGroup.
Inheritance: BEPUphysics.CollisionShapes.CollisionShape
 ///<summary>
 /// Constructs a new static mesh.
 ///</summary>
 ///<param name="collidables">List of collidables in the static group.</param>
 public StaticGroup(IList<Collidable> collidables)
 {
     shape = new StaticGroupShape(collidables, this);
     Events = new ContactEventManager<StaticGroup>();
 }