Method OrthoOffCenter
OrthoOffCenter(Single, Single, Single, Single, Single, Single)
Returns a float4x4 off-center orthographic projection matrix.
Declaration
public static float4x4 OrthoOffCenter(float left, float right, float bottom, float top, float near, float far)
Parameters
Type | Name | Description |
---|---|---|
Single | left | The minimum x-coordinate of the view volume. |
Single | right | The maximum x-coordinate of the view volume. |
Single | bottom | The minimum y-coordinate of the view volume. |
Single | top | The minimum y-coordinate of the view volume. |
Single | near | The distance to the near plane. |
Single | far | The distance to the far plane. |
Returns
Type | Description |
---|---|
float4x4 | The float4x4 off-center orthographic projection matrix. |