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