Matrix Constructor (Double, Double, Double, Double, Double, Double) |
Initializes transformation matrix with specified coefficients.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic Matrix(
double a,
double b,
double c,
double d,
double e,
double f
)
Public Sub New (
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
public:
Matrix(
double a,
double b,
double c,
double d,
double e,
double f
)
new :
a : float *
b : float *
c : float *
d : float *
e : float *
f : float -> Matrix
Parameters
- a
- Type: SystemDouble
A matrix value. - b
- Type: SystemDouble
B matrix value. - c
- Type: SystemDouble
C matrix value. - d
- Type: SystemDouble
D matrix value. - e
- Type: SystemDouble
E matrix value. - f
- Type: SystemDouble
F matrix value.
ExamplesMatrix m = new Matrix(1, 0, 0, 1, 3, 3);
See Also