# Contains(PhysicsAABB)

> Checks if the AABB contains (completely encapsulates) the specified AABB.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.LowLevelPhysics2D](/engine/6000.3/script-reference/unityengine/lowlevelphysics2d.md)
* **Assembly:** UnityEngine.Physics2DModule

```csharp
public readonly bool Contains(PhysicsAABB aabb)
```

### Parameters

**** (\[PhysicsAABB]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/physicsaabb)): The AABB to check being contained by this AABB.

### Returns

| Type                                                          | Description                                                         |
| ------------------------------------------------------------- | ------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | True if the specified AABB is contained by this AABB. False if not. |
