Matrix3D Constructor

Definition

Initializes a new instance of the Matrix3D class.

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 Windows.UI.Xaml.Media.Media3D.Matrix3D : double * double * double * double * double * double * double * double * double * double * double * double * double * double * double * double -> Windows.UI.Xaml.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

The value of the (1,1) field of the new matrix.

m12
Double

The value of the (1,2) field of the new matrix.

m13
Double

The value of the (1,3) field of the new matrix.

m14
Double

The value of the (1,4) field of the new matrix.

m21
Double

The value of the (2,1) field of the new matrix.

m22
Double

The value of the (2,2) field of the new matrix.

m23
Double

The value of the (2,3) field of the new matrix.

m24
Double

The value of the (2,4) field of the new matrix.

m31
Double

The value of the (3,1) field of the new matrix.

m32
Double

The value of the (3,2) field of the new matrix.

m33
Double

The value of the (3,3) field of the new matrix.

m34
Double

The value of the (3,4) field of the new matrix.

offsetX
Double

The value of the X offset field of the new matrix.

offsetY
Double

The value of the Y offset field of the new matrix.

offsetZ
Double

The value of the Z offset field of the new matrix.

m44
Double

The value of the (4,4) field of the new matrix.

Remarks

This struct represents the .NET projection of the Windows Runtime (WinRT) Matrix3D struct. For more information, see Matrix3D in the UWP API reference.

Applies to