So I was thinking about this for a pathfinding problem, where I have something traveling along an arc of a circle (centerPt, start angle, end angle, clockwise/CCW) and I have a grid underneath that I use for pathfinding.
Now the brute force way is to obviously just sample the arc at a certain granularity, and find out which tile each sampled point was in/on.
But I was wondering if there was any easier\quicker way to to solve the problem. A bounding box won't work, as it will pick up tiles\squares that aren't actually on the arc.