# float2x2

> Returns a float2x2 matrix constructed from two float2 vectors.

## Definition

* **Type:** Method
* **Namespace:** [Unity.Mathematics](/engine/6000.6/script-reference/unity/mathematics.md)
* **Assembly:** UnityEngine.MathematicsModule

## float2x2(float2, float2)

Returns a float2x2 matrix constructed from two float2 vectors.

```csharp
public static float2x2 float2x2(float2 c0, float2 c1)
```

### Parameters

**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): The matrix column c0 will be set to this value.**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): The matrix column c1 will be set to this value.

### Returns

| Type                                                                      | Description                          |
| ------------------------------------------------------------------------- | ------------------------------------ |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | float2x2 constructed from arguments. |

## float2x2(float, float, float, float)

Returns a float2x2 matrix constructed from from 4 float values given in row-major order.

```csharp
public static float2x2 float2x2(float m00, float m01, float m10, float m11)
```

### Parameters

**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The matrix at row 0, column 0 will be set to this value.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The matrix at row 0, column 1 will be set to this value.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The matrix at row 1, column 0 will be set to this value.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The matrix at row 1, column 1 will be set to this value.

### Returns

| Type                                                                      | Description                          |
| ------------------------------------------------------------------------- | ------------------------------------ |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | float2x2 constructed from arguments. |

## float2x2(float)

Returns a float2x2 matrix constructed from a single float value by assigning it to every component.

```csharp
public static float2x2 float2x2(float v)
```

### Parameters

**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): float to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(bool)

Returns a float2x2 matrix constructed from a single bool value by converting it to float and assigning it to every component.

```csharp
public static float2x2 float2x2(bool v)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): bool to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(bool2x2)

Return a float2x2 matrix constructed from a bool2x2 matrix by componentwise conversion.

```csharp
public static float2x2 float2x2(bool2x2 v)
```

### Parameters

**** (\[bool2x2]\(/engine/6000.6/script-reference/unity/mathematics/bool2x2)): bool2x2 to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(int)

Returns a float2x2 matrix constructed from a single int value by converting it to float and assigning it to every component.

```csharp
public static float2x2 float2x2(int v)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): int to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(int2x2)

Return a float2x2 matrix constructed from a int2x2 matrix by componentwise conversion.

```csharp
public static float2x2 float2x2(int2x2 v)
```

### Parameters

**** (\[int2x2]\(/engine/6000.6/script-reference/unity/mathematics/int2x2)): int2x2 to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(uint)

Returns a float2x2 matrix constructed from a single uint value by converting it to float and assigning it to every component.

```csharp
public static float2x2 float2x2(uint v)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): uint to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(uint2x2)

Return a float2x2 matrix constructed from a uint2x2 matrix by componentwise conversion.

```csharp
public static float2x2 float2x2(uint2x2 v)
```

### Parameters

**** (\[uint2x2]\(/engine/6000.6/script-reference/unity/mathematics/uint2x2)): uint2x2 to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(double)

Returns a float2x2 matrix constructed from a single double value by converting it to float and assigning it to every component.

```csharp
public static float2x2 float2x2(double v)
```

### Parameters

**** (\[double]\(https\://learn.microsoft.com/dotnet/api/system.double)): double to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |

## float2x2(double2x2)

Return a float2x2 matrix constructed from a double2x2 matrix by componentwise conversion.

```csharp
public static float2x2 float2x2(double2x2 v)
```

### Parameters

**** (\[double2x2]\(/engine/6000.6/script-reference/unity/mathematics/double2x2)): double2x2 to convert to float2x2

### Returns

| Type                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [float2x2](/engine/6000.6/script-reference/unity/mathematics/float2x2.md) | Converted value. |
