XpsMatrix.Scale

Scale(float, float, MatrixOrder)

Applies the specified scale vector (scaleX and scaleY) to this Matrix in order specified by matrixOrder.

public void Scale(float scaleX, float scaleY, MatrixOrder matrixOrder)
ParameterTypeDescription
scaleXSingleThe scale X.
scaleYSingleThe scale Y.
matrixOrderMatrixOrderThe order.

See Also


Scale(float, float)

Applies the specified scale vector (scaleX and scaleY) to this Matrix in default (Prepend) order.

public void Scale(float scaleX, float scaleY)
ParameterTypeDescription
scaleXSingleThe scale x.
scaleYSingleThe scale y.

See Also