Click or drag to resize

Matrix4x4Invert Method

Attempts to calculate the inverse of the given matrix. If successful, result will contain the inverted matrix.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static bool Invert(
	Matrix4x4 matrix,
	out Matrix4x4 result
)

Parameters

matrix
Type: Karamba.GeometryMatrix4x4
The source matrix to invert.
result
Type: Karamba.GeometryMatrix4x4
If successful, contains the inverted matrix.

Return Value

Type: Boolean
True if the source matrix could be inverted; False otherwise.
See Also