# operator +(int3)

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

## Definition

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

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

### Parameters

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

### Returns

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