[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.Matrix.-ctor

Matrix Constructor

Matrix(double, double, double, double, double, double)

Initializes a new instance of the Matrix class.

Declaration
public Matrix(double m11, double m12, double m21, double m22, double m31, double m32)
Parameters
Type Name Description
double m11

The value to assign at row 1 column 1 of the matrix.

double m12

The value to assign at row 1 column 2 of the matrix.

double m21

The value to assign at row 2 column 1 of the matrix.

double m22

The value to assign at row 2 column 2 of the matrix.

double m31

The value to assign at row 3 column 1 of the matrix.

double m32

The value to assign at row 3 column 2 of the matrix.

Matrix(Matrix3x2)

Initializes a new instance of the Matrix class from Matrix3x2.

Declaration
public Matrix(Matrix3x2 m)
Parameters
Type Name Description
Matrix3x2 m

The source Matrix3x2.