aabbIntersectsSkeleton method

bool aabbIntersectsSkeleton(
  1. SkeletonBounds bounds
)

Implementation

bool aabbIntersectsSkeleton(SkeletonBounds bounds) =>
    minX < bounds.maxX &&
    maxX > bounds.minX &&
    minY < bounds.maxY &&
    maxY > bounds.minY;