> ## Documentation Index
> Fetch the complete documentation index at: https://udcore.unrealdirective.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bounds Calculation

### IsActorWithinBoxBounds

Checks if an actor is within the bounds of a box.

<Frame type="glass">
  <img src="https://mintcdn.com/unrealdirective/gTrBcYn7mADNUpHm/images/blueprints/blueprint-subsystem-isactorwithinboxbounds.jpg?fit=max&auto=format&n=gTrBcYn7mADNUpHm&q=85&s=9dcfb21546a2129cfc2a5560c20520a7" width="850" height="360" data-path="images/blueprints/blueprint-subsystem-isactorwithinboxbounds.jpg" />
</Frame>

**Inputs**

<ParamField path="Actor" type="AActor*" required>
  The actor to check.
</ParamField>

<ParamField path="BoxComponent" type="UBoxComponent*" required>
  The box component to check.
</ParamField>

**Outputs**

<ParamField path="ReturnValue" type="bool">
  True if the actor is within the bounds of the box.
</ParamField>

### IsActorWithinSphereBounds

Checks if an actor is within the bounds of a sphere.

<Frame type="glass">
  <img src="https://mintcdn.com/unrealdirective/gTrBcYn7mADNUpHm/images/blueprints/blueprint-subsystem-isactorwithinspherebounds.jpg?fit=max&auto=format&n=gTrBcYn7mADNUpHm&q=85&s=403580afbc2a944c44e4de3a7ff606bc" width="850" height="360" data-path="images/blueprints/blueprint-subsystem-isactorwithinspherebounds.jpg" />
</Frame>

**Inputs**

<ParamField path="Actor" type="AActor*" required>
  The actor to check.
</ParamField>

<ParamField path="SphereComponent" type="USphereComponent*" required>
  The sphere component to check.
</ParamField>

**Outputs**

<ParamField path="ReturnValue" type="bool">
  True if the actor is within the bounds of the sphere.
</ParamField>

### IsActorWithinCapsuleBounds

Checks if an actor is within the bounds of a capsule.

<Frame type="glass">
  <img src="https://mintcdn.com/unrealdirective/gTrBcYn7mADNUpHm/images/blueprints/blueprint-subsystem-isactorwithincapsulebounds.jpg?fit=max&auto=format&n=gTrBcYn7mADNUpHm&q=85&s=fa9848af1e9173d32561bd751184daac" width="850" height="360" data-path="images/blueprints/blueprint-subsystem-isactorwithincapsulebounds.jpg" />
</Frame>

**Inputs**

<ParamField path="Actor" type="AActor*" required>
  The actor to check.
</ParamField>

<ParamField path="CapsuleComponent" type="UCapsuleComponent*" required>
  The capsule component to check.
</ParamField>

**Outputs**

<ParamField path="ReturnValue" type="bool">
  True if the actor is within the bounds of the capsule.
</ParamField>
