    

 ## On this page

  

 

 # ansys.meshing.prime.SurfaceUtilities

 Last update: 17.07.2025 

#### SurfaceUtilities.get\_bounding\_box\_of\_zonelets(zonelets)

Gets bounding box of given zonelets.

- **Parameters:****zonelets**: Ids of zonelets.
- **Returns:**[`BoundingBox`](ansys.meshing.prime.BoundingBox.md#ansys.meshing.prime.BoundingBox): Returns bounding of box of given zonelets.
- **Return type:**[`BoundingBox`](ansys.meshing.prime.BoundingBox.md#ansys.meshing.prime.BoundingBox)

### Examples

```pycon
&gt;&gt;&gt; zonelets = part.get_face_zonelets() + part.get_edge_zonelets()
&gt;&gt;&gt; bounding_box = surface_utilities.get_bounding_box_of_zonelets(zonelets)

```