[]
        
(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)
Public Sub New(m11 As Double, m12 As Double, m21 As Double, m22 As Double, m31 As Double, m32 As Double)
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)
Public Sub New(m As Matrix3x2)
Parameters
Type Name Description
Matrix3x2 m

The source Matrix3x2.