Click or drag to resize
DigitalRuneMatrix33D Constructor (Double, Double, Double, Double, Double, Double, Double, Double, Double)
Initializes a new instance of the Matrix33D class.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public Matrix33D(
	double m00,
	double m01,
	double m02,
	double m10,
	double m11,
	double m12,
	double m20,
	double m21,
	double m22
)

Parameters

m00
Type: SystemDouble
The element in the first row, first column.
m01
Type: SystemDouble
The element in the first row, second column.
m02
Type: SystemDouble
The element in the first row, third column.
m10
Type: SystemDouble
The element in the second row, first column.
m11
Type: SystemDouble
The element in the second row, second column.
m12
Type: SystemDouble
The element in the second row, third column.
m20
Type: SystemDouble
The element in the third row, first column.
m21
Type: SystemDouble
The element in the third row, second column.
m22
Type: SystemDouble
The element in the third row, third column.
See Also