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
)
Public Function Translate (
x As Double,
y As Double
) As Matrix2D
public:
virtual Matrix2D^ Translate(
[InAttribute] double x,
[InAttribute] double y
) sealed
function Translate(x, 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