Method PerspectiveFov
PerspectiveFov(float, float, float, float)
Returns a float4x4 perspective projection matrix based on field of view.
Declaration
public static float4x4 PerspectiveFov(float verticalFov, float aspect, float near, float far)
Parameters
| Type | Name | Description | 
|---|---|---|
| float | verticalFov | Vertical Field of view in radians.  | 
    
| float | aspect | X:Y aspect ratio.  | 
    
| float | near | Distance to near plane. Must be greater than zero.  | 
    
| float | far | Distance to far plane. Must be greater than zero.  | 
    
Returns
| Type | Description | 
|---|---|
| float4x4 | The float4x4 perspective projection matrix.  |