Point.Multiply(Point, Matrix) 메서드

정의

지정된 구조체로 지정된 Point 구조를 변환합니다 Matrix .

public:
 static System::Windows::Point Multiply(System::Windows::Point point, System::Windows::Media::Matrix matrix);
public static System.Windows.Point Multiply(System.Windows.Point point, System.Windows.Media.Matrix matrix);
static member Multiply : System.Windows.Point * System.Windows.Media.Matrix -> System.Windows.Point
Public Shared Function Multiply (point As Point, matrix As Matrix) As Point

매개 변수

point
Point

변환할 지점입니다.

matrix
Matrix

변환 행렬입니다.

반품

변환된 지점입니다.

예제

다음 예제에서는 메서드를 사용하여 구조체를 구조체로 곱 Point 하는 MatrixMultiply 방법을 보여줍니다.

private Point multiplyPointByMatrixExample()
{
      
    Point point1 = new Point(10, 5);
    Matrix matrix1 = new Matrix(40, 50, 60, 70, 80, 90);

    // Multiplies a Point by a Matrix.
    // pointResult is equal to (780,940).
    Point pointResult = Point.Multiply(point1, matrix1);

    return pointResult;
}

적용 대상

추가 정보