FMatrix4RowToPoint Method

Return a reference to a 3D point representing the values in the specified row of the provided matrix.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2613.4238
C#
public static FPoint3 RowToPoint(
	FMatrix4 matrix,
	int rowIndex
)

Parameters

matrix  FMatrix4
Reference to the matrix containing the values to copy.
rowIndex  Int32
0-based ordinal index of the row to copy.

Return Value

FPoint3
Reference to a new single precision floating-point 3D point containing values from the specified column, if the matrix and column were legitimate. Otherwise, an empty FPoint3.

See Also