TransformationMatrix.TransformationMatrix

TransformationMatrix()

Creates standard 1 to 1 transformation matrix: [ A B C D TX TY ] = [ 1, 0, 0, 1, 0, 0].

public TransformationMatrix()

See Also


TransformationMatrix(double[])

Accepts a transformation matrix with following array representation: [ A B C D TX TY ].

public TransformationMatrix(double[] matrixArray)
ParameterTypeDescription
matrixArrayDouble[]Array with transformation matrix values, must have 6 elements.

See Also