# operator /

> Returns the result of a componentwise division operation on two float3 vectors.

## Definition

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

## operator /(float3, float3)

Returns the result of a componentwise division operation on two float3 vectors.

```csharp
public static float3 operator /(float3 lhs, float3 rhs)
```

### Parameters

**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): Left hand side float3 to use to compute componentwise division.**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): Right hand side float3 to use to compute componentwise division.

### Returns

| Type                                                                  | Description                                  |
| --------------------------------------------------------------------- | -------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | float3 result of the componentwise division. |

## operator /(float3, float)

Returns the result of a componentwise division operation on a float3 vector and a float value.

```csharp
public static float3 operator /(float3 lhs, float rhs)
```

### Parameters

**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): Left hand side float3 to use to compute componentwise division.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): Right hand side float to use to compute componentwise division.

### Returns

| Type                                                                  | Description                                  |
| --------------------------------------------------------------------- | -------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | float3 result of the componentwise division. |

## operator /(float, float3)

Returns the result of a componentwise division operation on a float value and a float3 vector.

```csharp
public static float3 operator /(float lhs, float3 rhs)
```

### Parameters

**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): Left hand side float to use to compute componentwise division.**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): Right hand side float3 to use to compute componentwise division.

### Returns

| Type                                                                  | Description                                  |
| --------------------------------------------------------------------- | -------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | float3 result of the componentwise division. |
