Matrix.UnTransform

Matrix.UnTransform-Methode

Transformiert x1 und y1 zurück und gibt x und y vor der Matrixtransformation unter Verwendung der folgenden Formel zurück: x = (D * x1 - C * y1 + C * F) / (A * D - C * B) y = (A * y1 - B * x1 + B * E) / (A * D - C * B).

public void UnTransform(double x1, double y1, out double x, out double y)
ParameterTypBeschreibung
x1DoubleEingabe X-Koordinate
y1DoubleEingabe Y-Koordinate
xDouble&Ausgabe X-Koordinate
yDouble&Ausgabe Y-Koordinate

Siehe auch