Creates a matrix from 4 rows specified as vectors.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Matrix4x4 CreateFromRows(
	Vector4 row0,
	Vector4 row1,
	Vector4 row2,
	Vector4 row3
)

Parameters

row0
Type: AForge.Math..::.Vector4
First row of the matrix to create.
row1
Type: AForge.Math..::.Vector4
Second row of the matrix to create.
row2
Type: AForge.Math..::.Vector4
Third row of the matrix to create.
row3
Type: AForge.Math..::.Vector4
Fourth row of the matrix to create.

Return Value

Returns a matrix from specified rows.

See Also