Matrix2D Constructor (Double, Double, Double, Double, Double, Double) |
Creates a Matrix object based on six numbers that define an
affine transformation.
Namespace:
pdftron.Common
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Matrix2D(
double a,
double b,
double c,
double d,
double h,
double v
)
Public Sub New (
a As Double,
b As Double,
c As Double,
d As Double,
h As Double,
v As Double
)
public:
Matrix2D(
[InAttribute] double a,
[InAttribute] double b,
[InAttribute] double c,
[InAttribute] double d,
[InAttribute] double h,
[InAttribute] double v
)
pdftron.Common.Matrix2D = function(a, b, c, d, h, v);
Parameters
- a
- Type: SystemDouble
The matrix element in the first row, first column.
- b
- Type: SystemDouble
The matrix element in the first row, second column.
- c
- Type: SystemDouble
The matrix element in the second row, first column.
- d
- Type: SystemDouble
The matrix element in the second row, second column.
- h
- Type: SystemDouble
The matrix element in the third row, first column.
- v
- Type: SystemDouble
The matrix element in the third row, second column.
See Also