Click or drag to resize

Matrix2DScale Method

The Scale method updates this matrix with the product of itself and a scaling matrix. (i.e. it is equivalent to this.m_a *= h; this.m_d *= v).

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

Parameters

x
Type: SystemDouble
The horizontal scale factor.
y
Type: SystemDouble
The vertical scale factor.

Return Value

Type: Matrix2D
The scaled matrix.
See Also