Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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: Matrix4x4
Returns a matrix from specified columns.
See Also