 |
CameraGetInvertedViewMatrix Method |
GetInvertedViewMatrix method returns the inverted camera's view matrix.
The inverted view matrix can be used to revert the camera's rotation and its offset (to reset the offset, set M41, M42 and M43 to 0).
The calculated inverted matrix is cached until the camera is changed (the Matrix4x4.Invert is called only the first time this method is called).
Namespace: Ab4d.SharpEngine.CamerasAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntaxpublic Matrix4x4 GetInvertedViewMatrix(
bool updateIfDirty = true
)
Parameters
- updateIfDirty Boolean (Optional)
- when true (by default) then the Update(Boolean) method is called if the camera was changed after the last matrices were calculated; when false the current values are returned (may be outdated)
Return Value
Matrix4x4inverted camera's view matrix
See Also