public static Matrix4x4 Frustum (float left, float right, float bottom, float top, float zNear, float zFar);
public static Matrix4x4 Frustum (FrustumPlanes fp);

Parameters

left视图空间中近投影平面左边的 X 坐标。
right视图空间中近投影平面右边的 X 坐标。
bottom视图空间中近投影平面底边的 Y 坐标。
top视图空间中近投影平面顶边的 Y 坐标。
zNear视图空间中从原点到近平面的 Z 距离。
zFar视图空间中从原点到远平面的 Z 距离。
frustumPlanes锥体平面结构,其中包含定义视锥体的视图空间坐标。

Returns

Matrix4x4 投影矩阵,其视锥体由传入平面坐标定义。

Description

此函数返回一个投影矩阵,其视锥体的近平面由传入的坐标定义。

The corners of the near plane of the viewing frustum of the projection matrix are as follows:
top-left : (left, top, zNear)
top-right : (right, top, zNear)
bottom-right : (right, bottom, zNear)
bottom-left : (left, bottom, zNear)

另请参阅 glFrustum