Share via


Matrix.ScaleAt(Double, Double, Double, Double) 메서드

정의

지정한 점을 기준으로 지정한 크기만큼 이 Matrix의 배율을 조정합니다.

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)

매개 변수

scaleX
Double

X축 방향으로 이 Matrix의 배율을 조정할 크기입니다.

scaleY
Double

Y축 방향으로 이 Matrix의 배율을 조정할 크기입니다.

centerX
Double

배율 조정 작업의 중심점의 X 좌표입니다.

centerY
Double

배율 조정 작업의 중심점의 Y 좌표입니다.

예제

다음 예제에서는 크기 조정 방법을 Matrix 구조입니다.


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;
}

적용 대상