Ler em inglês

Compartilhar via


Point.Multiply(Point, Matrix) Operador

Definição

Transforma o Point especificado pelo Matrix especificado.

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

Parâmetros

point
Point

O ponto a ser transformado.

matrix
Matrix

A matriz de transformação.

Retornos

Point

O resultado da transformação do ponto especificado usando a matriz especificada.

Exemplos

O exemplo a seguir mostra como multiplicar um Point por um Matrix operador que usa o operador sobrecarregado (*).

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

Aplica-se a

Produto Versões
.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
Windows Desktop 3.0, 3.1, 5, 6, 7

Confira também