TerrainDisplay.Collision._3D.AABB.Intersects C# (CSharp) Method

Intersects() public static method

Checks if two AABBs intersect.
public static Intersects ( AABB box1, AABB box2 ) : bool
box1 AABB One AABB
box2 AABB The other AABB
return bool
        public static bool Intersects(AABB box1, AABB box2)
        {
            return true;
            //return box1.Bounds.Intersects(box2.Bounds);
        }

Same methods

AABB::Intersects ( AABB box, Ray ray ) : bool