Creates a matrix from 3 columns specified as vectors.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Matrix3x3 CreateFromColumns(
	Vector3 column0,
	Vector3 column1,
	Vector3 column2
)

Parameters

column0
Type: AForge.Math..::.Vector3
First column of the matrix to create.
column1
Type: AForge.Math..::.Vector3
Second column of the matrix to create.
column2
Type: AForge.Math..::.Vector3
Third column of the matrix to create.

Return Value

Returns a matrix from specified columns.

See Also