Table of Contents

Constructor TransformMatrix

Namespace
Alternet.Drawing
Assembly
Alternet.UI.Common.dll

TransformMatrix()

Initializes a new instance of the TransformMatrix class as the identity matrix.

public TransformMatrix()

TransformMatrix(float, float, float, float, float, float)

Initializes a new instance of the TransformMatrix class with the specified elements.

public TransformMatrix(float m11, float m12, float m21, float m22, float dx, float dy)

Parameters

m11 float

The scaling in the x-direction.

m12 float

The scaling in the y-direction.

m21 float

The skew in the x-direction.

m22 float

The skew in the y-direction.

dx float

The translation in the x-direction.

dy float

The translation in the x-direction.

TransformMatrix(SKMatrix)

Initializes a new instance of the TransformMatrix class using the specified SKMatrix.

public TransformMatrix(SKMatrix m)

Parameters

m SKMatrix

The SKMatrix representing the transformation matrix to initialize this instance with.

TransformMatrix(TransformMatrix)

Initializes a new instance of the TransformMatrix class using data from the specified matrix.

public TransformMatrix(TransformMatrix matrix)

Parameters

matrix TransformMatrix