BEPUphysics.BroadPhaseSystems.Hierarchies.DynamicHierarchyQueryAccelerator.GetEntries C# (CSharp) Метод

GetEntries() публичный Метод

Collects all entries with bounding boxes which intersect the given bounding box.
public GetEntries ( Microsoft.Xna.Framework.BoundingBox box, IList entries ) : void
box Microsoft.Xna.Framework.BoundingBox Bounding box to test against the world.
entries IList Entries of the space which intersect the bounding box.
Результат void
        public void GetEntries(BoundingBox box, IList<BroadPhaseEntry> entries)
        {
            if (hierarchy.root != null)
                hierarchy.root.GetOverlaps(ref box, entries);

        }

Same methods

DynamicHierarchyQueryAccelerator::GetEntries ( BoundingFrustum frustum, IList entries ) : void
DynamicHierarchyQueryAccelerator::GetEntries ( BoundingSphere sphere, IList entries ) : void