UnityEngine.GeometryUtility.TestPlanesAABB C# (CSharp) Method

TestPlanesAABB() public static method

Returns true if bounds are inside the plane array.

public static TestPlanesAABB ( Plane planes, Bounds bounds ) : bool
planes Plane
bounds Bounds
return bool
        public static bool TestPlanesAABB(Plane[] planes, Bounds bounds)
        {
            return INTERNAL_CALL_TestPlanesAABB(planes, ref bounds);
        }
    }