# operator ++(float3x3)

> Returns the result of a componentwise increment operation on a float3x3 matrix.

## Definition

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

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

### Parameters

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

### Returns

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