Matrix.Scale

Matrix.Scale method

Scales x and y with the matrix using the following formula: x1 = Ax + Cy; y1 = Bx + Dy;

public void Scale(double x, double y, out double x1, out double y1)
ParameterTypeDescription
xDoubleInput X coordinate
yDoubleInput Y coordinate
x1Double&Output X coordinate
y1Double&Output Y coordinate

See Also