TerrainDisplay.Collision._3D.AABB.Intersects C# (CSharp) 메소드

Intersects() 공개 정적인 메소드

Checks if two AABBs intersect.
public static Intersects ( AABB box1, AABB box2 ) : bool
box1 AABB One AABB
box2 AABB The other AABB
리턴 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