UnityEngine.GeometryUtility.INTERNAL_CALL_TestPlanesAABB C# (CSharp) Method

INTERNAL_CALL_TestPlanesAABB() private method

private INTERNAL_CALL_TestPlanesAABB ( Plane planes, Bounds &bounds ) : bool
planes Plane
bounds Bounds
return bool
        private static extern bool INTERNAL_CALL_TestPlanesAABB(Plane[] planes, ref Bounds bounds);
        private static void Internal_ExtractPlanes(Plane[] planes, Matrix4x4 worldToProjectionMatrix)

Usage Example

コード例 #1
0
 public static bool TestPlanesAABB(Plane[] planes, Bounds bounds)
 {
     return(GeometryUtility.INTERNAL_CALL_TestPlanesAABB(planes, ref bounds));
 }