MatrixTransform.Matrix Property

Definition

Gets or sets the Matrix that defines this transformation.

public:
 property Matrix Matrix { Matrix get(); void set(Matrix value); };
Matrix Matrix();

void Matrix(Matrix value);
public Matrix Matrix { get; set; }
var matrix = matrixTransform.matrix;
matrixTransform.matrix = matrix;
Public Property Matrix As Matrix
<MatrixTransform>
  <MatrixTransform.Matrix>
    singleMatrix
  </MatrixTransform.Matrix>
</MatrixTransform>

Property Value

The Matrix structure that defines this transformation. The default is an identity Matrix. An identity matrix has a value of 1 in coefficients [1,1], [2,2], and [3,3]; and a value of 0 in the rest of the coefficients.

Applies to