# implicit operator double3x2

> Implicitly converts a single double value to a double3x2 matrix by assigning it to every component.

## Definition

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

## implicit operator double3x2(double3x)

Implicitly converts a single double value to a double3x2 matrix by assigning it to every component.

```csharp
public static implicit operator double3x2(double v)
```

### Parameters

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

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a single int value to a double3x2 matrix by converting it to double and assigning it to every component.

```csharp
public static implicit operator double3x2(int v)
```

### Parameters

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

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a int3x2 matrix to a double3x2 matrix by componentwise conversion.

```csharp
public static implicit operator double3x2(int3x2 v)
```

### Parameters

**** (\[int3x2]\(/engine/6000.7/script-reference/unity/mathematics/int3x2)): int3x2 to convert to double3x2

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a single uint value to a double3x2 matrix by converting it to double and assigning it to every component.

```csharp
public static implicit operator double3x2(uint v)
```

### Parameters

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

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a uint3x2 matrix to a double3x2 matrix by componentwise conversion.

```csharp
public static implicit operator double3x2(uint3x2 v)
```

### Parameters

**** (\[uint3x2]\(/engine/6000.7/script-reference/unity/mathematics/uint3x2)): uint3x2 to convert to double3x2

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a single float value to a double3x2 matrix by converting it to double and assigning it to every component.

```csharp
public static implicit operator double3x2(float v)
```

### Parameters

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

### Returns

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

## implicit operator double3x2(double3x)

Implicitly converts a float3x2 matrix to a double3x2 matrix by componentwise conversion.

```csharp
public static implicit operator double3x2(float3x2 v)
```

### Parameters

**** (\[float3x2]\(/engine/6000.7/script-reference/unity/mathematics/float3x2)): float3x2 to convert to double3x2

### Returns

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