Translate this matrix by an amount horizontally and vertically. The default order is to prepend the transform.
Syntax

[C#]

void Translate(double offsetX, double offsetY);
void Translate(double offsetX, double offsetY, MatrixOrder order);

[Visual Basic]

Sub Translate(offsetX As Double, offsetY As Double)
Sub Translate(offsetX As Double, offsetY As Double, order As MatrixOrder)
Params
Name Description
offsetX The translation for the x coordinate.
offsetY The translation for the y coordinate.
order Whether the passed matrix should be appended (this * transform) or prepended (transform * this).
Notes

None.

Example

None.