# operator *

> Returns the result of a componentwise multiplication operation on two float3x3 matrices.

## Definition

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

## operator \*(float3x3, float3x3)

Returns the result of a componentwise multiplication operation on two float3x3 matrices.

```csharp
public static float3x3 operator *(float3x3 lhs, float3x3 rhs)
```

### Parameters

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

### Returns

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

## operator \*(float3x3, float)

Returns the result of a componentwise multiplication operation on a float3x3 matrix and a float value.

```csharp
public static float3x3 operator *(float3x3 lhs, float rhs)
```

### Parameters

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

### Returns

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

## operator \*(float, float3x3)

Returns the result of a componentwise multiplication operation on a float value and a float3x3 matrix.

```csharp
public static float3x3 operator *(float lhs, float3x3 rhs)
```

### Parameters

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

### Returns

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