|
Matrix3x3CreateFromRows Method
|
Creates a matrix from 3 rows specified as vectors.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Matrix3x3 CreateFromRows(
Vector3 row0,
Vector3 row1,
Vector3 row2
)
Public Shared Function CreateFromRows (
row0 As Vector3,
row1 As Vector3,
row2 As Vector3
) As Matrix3x3
Request Example
View SourceParameters
- row0
- Type: Accord.MathVector3
First row of the matrix to create. - row1
- Type: Accord.MathVector3
Second row of the matrix to create. - row2
- Type: Accord.MathVector3
Third row of the matrix to create.
Return Value
Type:
Matrix3x3Returns a matrix from specified rows.
See Also