|
Matrix3x3CreateFromColumns Method
|
Creates a matrix from 3 columns specified as vectors.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Matrix3x3 CreateFromColumns(
Vector3 column0,
Vector3 column1,
Vector3 column2
)
Public Shared Function CreateFromColumns (
column0 As Vector3,
column1 As Vector3,
column2 As Vector3
) As Matrix3x3
Request Example
View SourceParameters
- column0
- Type: Accord.MathVector3
First column of the matrix to create. - column1
- Type: Accord.MathVector3
Second column of the matrix to create. - column2
- Type: Accord.MathVector3
Third column of the matrix to create.
Return Value
Type:
Matrix3x3Returns a matrix from specified columns.
See Also