Matrix3D Constructor
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the Matrix3D class.
Assembly: System.Windows (in System.Windows.dll)
'Declaration 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
- Type: System.Double
The value of the (1,1) field of the new matrix.
- m12
- Type: System.Double
The value of the (1,2) field of the new matrix.
- m13
- Type: System.Double
The value of the (1,3) field of the new matrix.
- m14
- Type: System.Double
The value of the (1,4) field of the new matrix.
- m21
- Type: System.Double
The value of the (2,1) field of the new matrix.
- m22
- Type: System.Double
The value of the (2,2) field of the new matrix.
- m23
- Type: System.Double
The value of the (2,3) field of the new matrix.
- m24
- Type: System.Double
The value of the (2,4) field of the new matrix.
- m31
- Type: System.Double
The value of the (3,1) field of the new matrix.
- m32
- Type: System.Double
The value of the (3,2) field of the new matrix.
- m33
- Type: System.Double
The value of the (3,3) field of the new matrix.
- m34
- Type: System.Double
The value of the (3,4) field of the new matrix.
- offsetX
- Type: System.Double
The value of the X offset field of the new matrix.
- offsetY
- Type: System.Double
The value of the Y offset field of the new matrix.
- offsetZ
- Type: System.Double
The value of the Z offset field of the new matrix.
- m44
- Type: System.Double
The value of the (4,4) field of the new matrix.
Show: