# `GSComponent intersectsDontCheckBounds:`

*Instance Method*

Whether the closed-path representation crosses that of another component without first comparing their bounds.

## Declaration

```swift
func intersectsDontCheckBounds(_ otherComponent: GSComponent) -> Bool
```

```objc
- (BOOL) intersectsDontCheckBounds:(GSComponent *) otherComponent;
```

```python
intersectsDontCheckBounds_(otherComponent: GSComponent) -> bool
```

## Discussion

Use this method when the caller has already established that the component bounds intersect.

## See Also

### Geometry

- [`GSComponent bounds`](/Core/GlyphsCore/GSComponent/bounds) — The bounds of the transformed component representation.
- [`GSComponent intersects:`](/Core/GlyphsCore/GSComponent/intersects:) — Whether the closed-path representation crosses that of another component.
- [`GSComponent intersectionsWithLineFrom:to:`](/Core/GlyphsCore/GSComponent/intersectionsWithLineFrom:to:) — Intersections between the transformed component representation and a line segment.

