# `GSDrawSlice overestimatedBounds`

*Instance Method*

A rectangle containing the bounds of the slice.

## Declaration

```swift
func overestimatedBounds() -> CGRect
```

```objc
- (CGRect) overestimatedBounds;
```

```python
overestimatedBounds() -> CGRect
```

## Discussion

The implementation of this method may be more efficient than `-bounds`. For example, a Bézier path may report the bounds of its nodes instead of computing the bounds of its curves.

`CGRectNull` if there are no concrete bounds for the slice.

