UnityEngine.GeometryUtility.INTERNAL_CALL_TestPlanesAABB C# (CSharp) 메소드

INTERNAL_CALL_TestPlanesAABB() 개인적인 메소드

private INTERNAL_CALL_TestPlanesAABB ( Plane planes, Bounds &bounds ) : bool
planes Plane
bounds Bounds
리턴 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));
 }