[]
Creates a customized orthographic projection matrix.
public static Matrix4x4 OrthographicOffCenter(float left, float right, float bottom, float top, float zNearPlane, float zFarPlane)
Public Shared Function OrthographicOffCenter(left As Single, right As Single, bottom As Single, top As Single, zNearPlane As Single, zFarPlane As Single) As Matrix4x4
| Type | Name | Description |
|---|---|---|
| float | left | The minimum X-value of the view volume. |
| float | right | The maximum X-value of the view volume. |
| float | bottom | The minimum Y-value of the view volume. |
| float | top | The maximum Y-value of the view volume. |
| float | zNearPlane | The minimum Z-value of the view volume. |
| float | zFarPlane | The maximum Z-value of the view volume. |
| Type | Description |
|---|---|
| Matrix4x4 | The orthographic projection matrix. |