TransformationMatrix.Transform

TransformationMatrix.Transform method

Transforms x and y with the transformation matrix: x1 = Ax + Cy + TX; y1 = Bx + Dy + TY.

public void Transform(double x, double y, out double x1, out double y1)
ParameterTypeDescription
xDoubleOriginal x coordinate.
yDoubleOriginal y coordinate.
x1Double&Transformed x coordinate.
y1Double&Transformed y coordinate.

See Also