# Transform.AlmostEqual

```csharp
bool AlmostEqual(in Transform tx, float delta = 0.0001)
```

Returns true if we're nearly equal to the passed transform.

### Parameters

- `in tx` (`Transform`): The value to compare with
- `delta` (`float`), default `0.0001`: The max difference between component values (used for Position and Scale)

### Returns

`bool`: True if nearly equal

Declared in [Transform](/api/Transform).
Assembly: `Sandbox.System`.
