Matrix.Append(Matrix) 메서드

정의

지정한 Matrix 구조체를 이 Matrix 구조체 뒤에 추가합니다.

public:
 void Append(System::Windows::Media::Matrix matrix);
public void Append (System.Windows.Media.Matrix matrix);
member this.Append : System.Windows.Media.Matrix -> unit
Public Sub Append (matrix As Matrix)

매개 변수

matrix
Matrix

Matrix 구조체 뒤에 추가할 Matrix 구조체입니다.

예제

다음 예제에서는 추가 하는 방법을 보여 줍니다는 Matrix 구조체가 다른 Matrix 구조입니다.

private Matrix rotateAboutPointExample()
{
    
    // Creating a Matrix structure.
    Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
    
    // Rotate the matrix 90 degrees about the point (100,100).
    // myMatrix becomes equal to (-10, 4, -20, 15, 170, 25).
    myMatrix.RotateAt(90, 100, 100);
    
    return myMatrix; 
}

설명

이 작업은이 값을 곱한 동일 Matrix 매개 변수 구조체 matrix합니다. 행렬 곱 아니므로 가환 적, 그러나이 작업은 매개 변수를 곱한 동일 하지 matrixMatrix 구조체입니다; 즉, (이 * matrix)와 같지 않습니다 (matrix *이).

적용 대상

추가 정보