# CapsuleAndCircle(CapsuleGeometry, PhysicsTransform, CircleGeometry, PhysicsTransform)

> Check the intersection between Capsule and Circle geometries.

## Definition

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

```csharp
public static PhysicsShape.ContactManifold CapsuleAndCircle(CapsuleGeometry geometryA, PhysicsTransform transformA, CircleGeometry geometryB, PhysicsTransform transformB)
```

### Parameters

**** (\[CapsuleGeometry]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/capsulegeometry)): The first geometry to use.**** (\[PhysicsTransform]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/physicstransform)): The transform used to specify where the first geometry is positioned.**** (\[CircleGeometry]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/circlegeometry)): The second geometry to use.**** (\[PhysicsTransform]\(/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/physicstransform)): The transform used to specify where the second geometry is positioned.

### Returns

| Type                                                                                                             | Description                                            |
| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ |
| [ContactManifold](/engine/6000.3/script-reference/unityengine/lowlevelphysics2d/physicsshape/contactmanifold.md) | The contact manifold fully detailing the intersection. |
