BEPUphysics.DataStructures.MeshBoundingBoxTree.LeafNode.GetOverlaps C# (CSharp) Method

GetOverlaps() private method

private GetOverlaps ( Microsoft.Xna.Framework.BoundingBox &boundingBox, IList outputOverlappedElements ) : void
boundingBox Microsoft.Xna.Framework.BoundingBox
outputOverlappedElements IList
return void
            internal override void GetOverlaps(ref BoundingBox boundingBox, IList<int> outputOverlappedElements)
            {
                //Our parent already tested the bounding box.  All that's left is to add myself to the list.
                outputOverlappedElements.Add(LeafIndex);
            }

Same methods

MeshBoundingBoxTree.LeafNode::GetOverlaps ( BoundingFrustum &boundingFrustum, IList outputOverlappedElements ) : void
MeshBoundingBoxTree.LeafNode::GetOverlaps ( BoundingSphere &boundingSphere, IList outputOverlappedElements ) : void
MeshBoundingBoxTree.LeafNode::GetOverlaps ( Microsoft.Xna.Framework.Ray &ray, float maximumLength, IList outputOverlappedElements ) : void