Previously the hulls edges were simply iterated over causing the rotating calipers to step over points 4x as many times as is needed. Avoid this by adding angle stepping logic that maps all angles to a single quadrant, reducing the checks needed to advance the calipers to each new angle. This gives ~1.4x speedup to AABB fitting logic. Also add a test for octagon shapes to ensure axis aligned edges work as expected.