Method PerspectiveOffCenter
PerspectiveOffCenter(float, float, float, float, float, float)
Returns a float4x4 off-center perspective projection matrix.
Declaration
public static float4x4 PerspectiveOffCenter(float left, float right, float bottom, float top, float near, float far)
Parameters
Type | Name | Description |
---|---|---|
float | left | The x-coordinate of the left side of the clipping frustum at the near plane. |
float | right | The x-coordinate of the right side of the clipping frustum at the near plane. |
float | bottom | The y-coordinate of the bottom side of the clipping frustum at the near plane. |
float | top | The y-coordinate of the top side of the clipping frustum at the near plane. |
float | near | Distance to the near plane. Must be greater than zero. |
float | far | Distance to the far plane. Must be greater than zero. |
Returns
Type | Description |
---|---|
float4x4 | The float4x4 off-center perspective projection matrix. |