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.CameraAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
Matrix4x3The OrthoRH matrix.
See Also