# operator +(float3)

> Returns the result of a componentwise unary plus operation on a float3 vector.

## Definition

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

```csharp
public static float3 operator +(float3 val)
```

### Parameters

**** (\[float3]\(/engine/6000.5/script-reference/unity/mathematics/float3)): Value to use when computing the componentwise unary plus.

### Returns

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