Click or drag to resize
Accord.NET (logo)

Matrix4x4CreateFromRows Method

Creates a matrix from 4 rows specified as vectors.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Matrix4x4 CreateFromRows(
	Vector4 row0,
	Vector4 row1,
	Vector4 row2,
	Vector4 row3
)
Request Example View Source

Parameters

row0
Type: Accord.MathVector4
First row of the matrix to create.
row1
Type: Accord.MathVector4
Second row of the matrix to create.
row2
Type: Accord.MathVector4
Third row of the matrix to create.
row3
Type: Accord.MathVector4
Fourth row of the matrix to create.

Return Value

Type: Matrix4x4
Returns a matrix from specified rows.
See Also