Click or drag to resize

OrthographicCameraGetOrthoRHMatrix Method

Gets the OrthoRH matrix. The OrthoRH matrix transforms the camera coordinates into the view volume coordinates (X=(-1..+1), Y=(-1..+1), Z=(0..1)).

Namespace: Altaxo.Graph.Graph3D.Camera
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Matrix4x3 GetOrthoRHMatrix(
	double aspectRatio,
	double zNearPlane,
	double zFarPlane
)

Parameters

aspectRatio  Double
The aspect ratio of the screen (or whatever the 2D output medium is).
zNearPlane  Double
The z near plane, i.e. the z camera coordinate of the near end of the view volume.
zFarPlane  Double
The z far plane, i.e. the z camera coordinate of the far end of the view volume.

Return Value

Matrix4x3
The OrthoRH matrix.
See Also