|
Matrix4x4CreateFromColumns Method
|
Creates a matrix from 4 columns specified as vectors.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Matrix4x4 CreateFromColumns(
Vector4 column0,
Vector4 column1,
Vector4 column2,
Vector4 column3
)
Public Shared Function CreateFromColumns (
column0 As Vector4,
column1 As Vector4,
column2 As Vector4,
column3 As Vector4
) As Matrix4x4
Request Example
View SourceParameters
- column0
- Type: Accord.MathVector4
First column of the matrix to create. - column1
- Type: Accord.MathVector4
Second column of the matrix to create. - column2
- Type: Accord.MathVector4
Third column of the matrix to create. - column3
- Type: Accord.MathVector4
Fourth column of the matrix to create.
Return Value
Type:
Matrix4x4Returns a matrix from specified columns.
See Also