Matrix.ScaleAt(Double, Double, Double, Double) Methode

Definition

Skaliert die Matrix um den angegebenen Betrag um den angegebenen Punkt.

public:
 void ScaleAt(double scaleX, double scaleY, double centerX, double centerY);
public void ScaleAt (double scaleX, double scaleY, double centerX, double centerY);
member this.ScaleAt : double * double * double * double -> unit
Public Sub ScaleAt (scaleX As Double, scaleY As Double, centerX As Double, centerY As Double)

Parameter

scaleX
Double

Der Betrag, um den die Matrix auf der x-Achse skaliert werden soll.

scaleY
Double

Der Betrag, um den die Matrix auf der y-Achse skaliert werden soll.

centerX
Double

Die x-Koordinate des Mittelpunkts der Skalierung.

centerY
Double

Die y-Koordinate des Mittelpunkts der Skalierung.

Beispiele

Im folgenden Beispiel wird gezeigt, wie eine Matrix Struktur skaliert wird.


private Matrix scaleExample()
{
    Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
    
    // Scale myMatrix by a horizontal factor of 2
    // and a vertical factor of 4 about the origin.
    // After this operation,
    // myMatrix is equal to (10, 40, 30, 80, 50, 120)
    myMatrix.Scale(2, 4);
    
    return myMatrix;
}

private Matrix scaleAboutPointExample()
{
    Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
    
    // Scale myMatrix by a horizontal factor of 2
    // and a vertical factor of 4 about the 
    // point (100,100).
    // After this operation,
    // myMatrix is equal to (10, 40, 30, 80, -50, -180)
    myMatrix.ScaleAt(2, 4, 100, 100);
    
    return myMatrix;
}

Gilt für