Constructor TransformMatrix
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
m11floatThe scaling in the x-direction.
m12floatThe scaling in the y-direction.
m21floatThe skew in the x-direction.
m22floatThe skew in the y-direction.
dxfloatThe translation in the x-direction.
dyfloatThe translation in the x-direction.
TransformMatrix(SKMatrix)
Initializes a new instance of the TransformMatrix class using the specified SKMatrix.
public TransformMatrix(SKMatrix m)
Parameters
TransformMatrix(TransformMatrix)
Initializes a new instance of the TransformMatrix class using data from the specified matrix.
public TransformMatrix(TransformMatrix matrix)
Parameters
matrixTransformMatrix