Matrix.Scale Method

Applies the specified scale vector to this Matrix by prepending the scale vector.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public void Scale(
	float scaleX,
	float scaleY
)

Parameters

scaleX

Type: System.Single

The value by which to scale this Matrix in the x-axis direction.
scaleY

Type: System.Single

The value by which to scale this Matrix in the y-axis direction.

Remarks

Internally the scaling is applied by multiplying this instance of the matrix by the affine matrix of scale. Left-sided multiplication is made.

See Also

Reference