Constructs a [3x3] matrix from three 3d column vectors.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Matrix3d(
	Vector3d column1,
	Vector3d column2,
	Vector3d column3
)
Visual Basic (Declaration)
Public Sub New ( _
	column1 As Vector3d, _
	column2 As Vector3d, _
	column3 As Vector3d _
)
Visual C++
public:
Matrix3d(
	Vector3d^ column1, 
	Vector3d^ column2, 
	Vector3d^ column3
)

Parameters

column1
Type: ceometric.VectorGeometry..::.Vector3d
The first column of the matrix.
column2
Type: ceometric.VectorGeometry..::.Vector3d
The second column of the matrix.
column3
Type: ceometric.VectorGeometry..::.Vector3d
The third column of the matrix.

See Also