예제 #1
0
        public static bool FastIntersects(this BoundingFrustum boundingfrustum, ref BoundingSphere aabb)
        {
            if (boundingfrustum == null)
            {
                return(false);
            }
            var box = BoundingBox.CreateFromSphere(aabb);

            return(boundingfrustum.FastIntersects(ref box));
        }