Constructs a [3x3] matrix directly assigning the nine elements of the matrix.

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

Syntax

C#
public Matrix3d(
	double a00,
	double a01,
	double a02,
	double a10,
	double a11,
	double a12,
	double a20,
	double a21,
	double a22
)
Visual Basic (Declaration)
Public Sub New ( _
	a00 As Double, _
	a01 As Double, _
	a02 As Double, _
	a10 As Double, _
	a11 As Double, _
	a12 As Double, _
	a20 As Double, _
	a21 As Double, _
	a22 As Double _
)
Visual C++
public:
Matrix3d(
	double a00, 
	double a01, 
	double a02, 
	double a10, 
	double a11, 
	double a12, 
	double a20, 
	double a21, 
	double a22
)

Parameters

a00
Type: System..::.Double
The first element in the first row of the matrix.
a01
Type: System..::.Double
The second element in the first row of the matrix.
a02
Type: System..::.Double
The third element in the first row of the matrix.
a10
Type: System..::.Double
The first element in the second row of the matrix.
a11
Type: System..::.Double
The second element in the second row of the matrix.
a12
Type: System..::.Double
The third element in the second row of the matrix.
a20
Type: System..::.Double
The first element in the third row of the matrix.
a21
Type: System..::.Double
The second element in the third row of the matrix.
a22
Type: System..::.Double
The third element in the third row of the matrix.

See Also