BEPUphysics.BroadPhaseEntries.StaticGroup.StaticGroup C# (CSharp) Method

StaticGroup() public method

Constructs a new static mesh.
public StaticGroup ( IList collidables ) : System
collidables IList List of collidables in the static group.
return System
        public StaticGroup(IList<Collidable> collidables)
        {
            shape = new StaticGroupShape(collidables, this);
            Events = new ContactEventManager<StaticGroup>();

        }