Edit

Share via


Matrix3x2.Create Method

Definition

Overloads

Create(Vector2)

Creates a Matrix3x2 whose three rows are set to the specified value.

Create(Single)

Creates a Matrix3x2 whose six elements are set to the specified value.

Create(Vector2, Vector2, Vector2)

Creates a Matrix3x2 from the specified rows.

Create(Single, Single, Single, Single, Single, Single)

Creates a Matrix3x2 from the specified elements.

Create(Vector2)

Creates a Matrix3x2 whose three rows are set to the specified value.

public:
 static System::Numerics::Matrix3x2 Create(System::Numerics::Vector2 value);
public static System.Numerics.Matrix3x2 Create(System.Numerics.Vector2 value);
static member Create : System.Numerics.Vector2 -> System.Numerics.Matrix3x2
Public Shared Function Create (value As Vector2) As Matrix3x2

Parameters

value
Vector2

The value to assign to all three rows.

Returns

A Matrix3x2 whose three rows are set to value.

Applies to

Create(Single)

Creates a Matrix3x2 whose six elements are set to the specified value.

public:
 static System::Numerics::Matrix3x2 Create(float value);
public static System.Numerics.Matrix3x2 Create(float value);
static member Create : single -> System.Numerics.Matrix3x2
Public Shared Function Create (value As Single) As Matrix3x2

Parameters

value
Single

The value to assign to all six elements.

Returns

A Matrix3x2 whose six elements are set to value.

Applies to

Create(Vector2, Vector2, Vector2)

Creates a Matrix3x2 from the specified rows.

public:
 static System::Numerics::Matrix3x2 Create(System::Numerics::Vector2 x, System::Numerics::Vector2 y, System::Numerics::Vector2 z);
public static System.Numerics.Matrix3x2 Create(System.Numerics.Vector2 x, System.Numerics.Vector2 y, System.Numerics.Vector2 z);
static member Create : System.Numerics.Vector2 * System.Numerics.Vector2 * System.Numerics.Vector2 -> System.Numerics.Matrix3x2
Public Shared Function Create (x As Vector2, y As Vector2, z As Vector2) As Matrix3x2

Parameters

x
Vector2

The value to assign to X.

y
Vector2

The value to assign to Y.

z
Vector2

The value to assign to Z.

Returns

A Matrix3x2 whose rows are set to the specified values.

Applies to

Create(Single, Single, Single, Single, Single, Single)

Creates a Matrix3x2 from the specified elements.

public:
 static System::Numerics::Matrix3x2 Create(float m11, float m12, float m21, float m22, float m31, float m32);
public static System.Numerics.Matrix3x2 Create(float m11, float m12, float m21, float m22, float m31, float m32);
static member Create : single * single * single * single * single * single -> System.Numerics.Matrix3x2
Public Shared Function Create (m11 As Single, m12 As Single, m21 As Single, m22 As Single, m31 As Single, m32 As Single) As Matrix3x2

Parameters

m11
Single

The value to assign to M11.

m12
Single

The value to assign to M12.

m21
Single

The value to assign to M21.

m22
Single

The value to assign to M22.

m31
Single

The value to assign to M31.

m32
Single

The value to assign to M32.

Returns

A Matrix3x2 whose elements are set to the specified values.

Applies to