Constructor TransformMatrix
TransformMatrix()
Initializes a new instance of the TransformMatrix class as the identity matrix.
public TransformMatrix()
TransformMatrix(double, double, double, double, double, double)
Initializes a new instance of the TransformMatrix class with the specified elements.
public TransformMatrix(double m11, double m12, double m21, double m22, double dx, double dy)
Parameters
m11
doubleThe scaling in the x-direction.
m12
doubleThe scaling in the y-direction.
m21
doubleThe skew in the x-direction.
m22
doubleThe skew in the y-direction.
dx
doubleThe translation in the x-direction.
dy
doubleThe translation in the x-direction.
TransformMatrix(TransformMatrix)
Initializes a new instance of the TransformMatrix class using data from the specified matrix.
public TransformMatrix(TransformMatrix matrix)
Parameters
matrix
TransformMatrix