Matrix.Append(Matrix) Método

Definição

Acrescenta a estrutura Matrix especificada a esta estrutura 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)

Parâmetros

matrix
Matrix

A estrutura Matrix a ser acrescentada a esta estrutura Matrix.

Exemplos

O exemplo a seguir mostra como acrescentar uma Matrix estrutura a outra Matrix estrutura.

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

Comentários

Essa operação é a mesma que multiplicar essa Matrix estrutura pelo parâmetro matrix. A multiplicação de matriz não é commutativa, portanto, essa operação não é a mesma que multiplicar o parâmetro matrix por essa Matrix estrutura; ou seja, (este * matrix) não é o mesmo que (matrix * isso).

Aplica-se a

Confira também