Matrix Constructor (Double, Double, Double, Double, Double, Double)
Initializes transformation matrix with specified coefficients.

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public Matrix(
	double a,
	double b,
	double c,
	double d,
	double e,
	double f
)

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.
Examples
C#
Matrix m = new Matrix(1, 0, 0, 1, 3, 3);
See Also