Click or drag to resize

Matrix2DTranslate Method

The Translate method updates this matrix with the product of itself and a translation matrix (i.e. it is equivalent to this.m_h += h; this.m_v += v).

Namespace:  pdftron.Common
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public Matrix2D Translate(
	double x,
	double y
)

Parameters

x
Type: SystemDouble
The horizontal component of the translation.
y
Type: SystemDouble
The vertical component of the translation.

Return Value

Type: Matrix2D
The translated matrix.
See Also