BEPUutilities2.BoundingBox.Intersects C# (CSharp) Метод

Intersects() приватный Метод

private Intersects ( BoundingBox &a, BoundingBox &b ) : bool
a BoundingBox
b BoundingBox
Результат bool
        public bool Intersects(ref BoundingBox a, ref BoundingBox b)
        {
            return a.Max.X >= b.Min.X & a.Max.Y >= b.Min.Y & a.Max.Z >= b.Min.Z &
                   b.Max.X >= a.Min.X & b.Max.Y >= a.Min.Y & b.Max.Z >= a.Min.Z;
        }

Same methods

BoundingBox::Intersects ( BoundingSphere &boundingSphere ) : bool