[This is preliminary documentation and is subject to change.]
Creates a right-handed, customized perspective projection matrix.
Namespace: Rage
Assembly: RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax
public static Matrix PerspectiveOffCenterRH( float left, float right, float bottom, float top, float znear, float zfar )
Parameters
- left
- Type: SystemSingle
Minimum x-value of the viewing volume. - right
- Type: SystemSingle
Maximum x-value of the viewing volume. - bottom
- Type: SystemSingle
Minimum y-value of the viewing volume. - top
- Type: SystemSingle
Maximum y-value of the viewing volume. - znear
- Type: SystemSingle
Minimum z-value of the viewing volume. - zfar
- Type: SystemSingle
Maximum z-value of the viewing volume.
Return Value
Type: MatrixThe created projection matrix.
See Also