FMatrix4GetMinorMatrix Method

Return the minor matrix array of the supplied matrix.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static float[,] GetMinorMatrix(
	FMatrix4 matrix,
	int excludeRow,
	int excludeCol
)

Parameters

matrix  FMatrix4
Reference to the matrix whose minor subset will be returned.
excludeRow  Int32
Ordinal index of the row to exclude.
excludeCol  Int32
Ordinal index of the column to exclude.

Return Value

Single
Reference to a two-dimensional 3 by 3 array of single precision floating point numbers representing a subject of the caller's matrix.

See Also