Point.Multiply(Point, Matrix) Operator

Definition

Transforms the specified Point by the specified Matrix.

public static System.Windows.Point operator * (System.Windows.Point point, System.Windows.Media.Matrix matrix);

Parameters

point
Point

The point to transform.

matrix
Matrix

The transformation matrix.

Returns

The result of transforming the specified point using the specified matrix.

Examples

The following example shows how to multiply a Point by a Matrix using the overloaded (*) operator.

private Point overloadedMultiplyPointByMatrixOperatorExample()
{

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

    // Multiply the Point by the Matrix using the overloaded
    // (*) operator.
    // pointResult is equal to (780,940).
    Point pointResult = point1 * matrix1;

    return pointResult;
}

Applies to

제품 버전
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also