|
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
)
Public Shared Function CreateFromRows (
row0 As Vector4,
row1 As Vector4,
row2 As Vector4,
row3 As Vector4
) As Matrix4x4
Request Example
View SourceParameters
- 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:
Matrix4x4Returns a matrix from specified rows.
See Also