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

Intersects() public static method

Checks if a Ray intersects an AABB.
public static Intersects ( AABB box, Ray ray ) : bool
box AABB The AABB in question.
ray Ray The Ray in question.
return bool
        public static bool Intersects(AABB box, Ray ray)
        {
            return box.Bounds.Intersects(ray) != null;
        }

Same methods

AABB::Intersects ( AABB box1, AABB box2 ) : bool