Matrix3D Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructor that sets matrix's initial values.
public:
Matrix3D(double m11, double m12, double m13, double m14, double m21, double m22, double m23, double m24, double m31, double m32, double m33, double m34, double offsetX, double offsetY, double offsetZ, double m44);
public Matrix3D (double m11, double m12, double m13, double m14, double m21, double m22, double m23, double m24, double m31, double m32, double m33, double m34, double offsetX, double offsetY, double offsetZ, double m44);
new System.Windows.Media.Media3D.Matrix3D : double * double * double * double * double * double * double * double * double * double * double * double * double * double * double * double -> System.Windows.Media.Media3D.Matrix3D
Public Sub New (m11 As Double, m12 As Double, m13 As Double, m14 As Double, m21 As Double, m22 As Double, m23 As Double, m24 As Double, m31 As Double, m32 As Double, m33 As Double, m34 As Double, offsetX As Double, offsetY As Double, offsetZ As Double, m44 As Double)
Parameters
- m11
- Double
Value of the (1,1) field of the new matrix.
- m12
- Double
Value of the (1,2) field of the new matrix.
- m13
- Double
Value of the (1,3) field of the new matrix.
- m14
- Double
Value of the (1,4) field of the new matrix.
- m21
- Double
Value of the (2,1) field of the new matrix.
- m22
- Double
Value of the (2,2) field of the new matrix.
- m23
- Double
Value of the (2,3) field of the new matrix.
- m24
- Double
Value of the (2,4) field of the new matrix.
- m31
- Double
Value of the (3,1) field of the new matrix.
- m32
- Double
Value of the (3,2) field of the new matrix.
- m33
- Double
Value of the (3,3) field of the new matrix.
- m34
- Double
Value of the (3,4) field of the new matrix.
- offsetX
- Double
Value of the X offset field of the new matrix.
- offsetY
- Double
Value of the Y offset field of the new matrix.
- offsetZ
- Double
Value of the Z offset field of the new matrix.
- m44
- Double
Value of the (4,4) field of the new matrix.