Matrix.Translate Method

Applies the specified translation vector (offsetX and offsetY) to this Matrix by prepending the translation vector.

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

Syntax

C#
public void Translate(
	float offsetX,
	float offsetY
)

Parameters

offsetX

Type: System.Single

The x value by which to translate this Matrix.
offsetY

Type: System.Single

The y value by which to translate this Matrix.

Remarks

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

See Also

Reference