Windows apps
Collapse the table of content
Expand the table of content

Matrix3x2 Constructor

Creates a 3x2 matrix from the specified components.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
Matrix3x2(
	float m11, 
	float m12, 
	float m21, 
	float m22, 
	float m31, 
	float m32
)

Parameters

m11
Type: System::Single

The value to assign to the first element in the first row.

m12
Type: System::Single

The value to assign to the second element in the first row.

m21
Type: System::Single

The value to assign to the first element in the second row.

m22
Type: System::Single

The value to assign to the second element in the second row.

m31
Type: System::Single

The value to assign to the first element in the third row.

m32
Type: System::Single

The value to assign to the second element in the third row.

Show:
© 2017 Microsoft