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
)
Public Function Scale (
x As Double,
y As Double
) As Matrix2D
public:
virtual Matrix2D^ Scale(
[InAttribute] double x,
[InAttribute] double y
) sealed
Parameters
- x
- Type: SystemDouble
The horizontal scale factor.
- y
- Type: SystemDouble
The vertical scale factor.
Return Value
Type:
Matrix2D
The scaled matrix.
See Also