Matrix3D Constructor (Double, Double, Double, Double, Double, Double, 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 Matrix3D(
double a,
double b,
double c,
double d,
double e,
double f,
double g,
double h,
double i,
double tx,
double ty,
double tz
)
Public Sub New (
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double,
g As Double,
h As Double,
i As Double,
tx As Double,
ty As Double,
tz As Double
)
public:
Matrix3D(
double a,
double b,
double c,
double d,
double e,
double f,
double g,
double h,
double i,
double tx,
double ty,
double tz
)
new :
a : float *
b : float *
c : float *
d : float *
e : float *
f : float *
g : float *
h : float *
i : float *
tx : float *
ty : float *
tz : float -> Matrix3D
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. - g
- Type: SystemDouble
- h
- Type: SystemDouble
- i
- Type: SystemDouble
- tx
- Type: SystemDouble
- ty
- Type: SystemDouble
- tz
- Type: SystemDouble
ExamplesMatrix m = new Matrix(1, 0, 0, 1, 3, 3);
See Also