Creates a matrix from 3 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 Matrix3x3 CreateFromRows(
	Vector3 row0,
	Vector3 row1,
	Vector3 row2
)

Parameters

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

Return Value

Returns a matrix from specified rows.

See Also