Esempio n. 1
0
        private static Matrix4x4 FrustumInternal(float left, float right, float bottom, float top, float zNear, float zFar)
        {
            Matrix4x4 result;

            Matrix4x4.INTERNAL_CALL_FrustumInternal(left, right, bottom, top, zNear, zFar, out result);
            return(result);
        }