IMatrix.Scale

Scale(float, float, SvgMatrixOrder)

Scales the matrix by the specified scale factors in the specified order.

public void Scale(float scaleX, float scaleY, SvgMatrixOrder order)
ParameterTypeDescription
scaleXSingleThe scale factor along the x-axis.
scaleYSingleThe scale factor along the y-axis.
orderSvgMatrixOrderThe order in which scaling is applied.

See Also


Scale(float, float)

Scales the matrix by the specified scale factors uniformly.

public void Scale(float scaleX, float scaleY)
ParameterTypeDescription
scaleXSingleThe uniform scale factor.
scaleYSingleThe uniform scale factor.

See Also