Take a blank plane and draw a line. It splits the plane into two half-planes. Draw a second line that crosses the first — now you have four regions, two intersection points and four rays. Keep adding lines. Every new one slices through existing regions, creating fresh edges and vertices as it goes.
This structure — all the cells, edges and vertices produced by lines — is called an arrangement of lines. Arrangements sit at the heart of computational geometry: they appear whenever an algorithm needs to reason about all possible intersections, half-planes or dual transforms at once.
The key question is not just how many objects are created in total, but how much that count grows when you add one more line. That incremental cost is bounded by the Zone Theorem, a clean and powerful result that underlies many efficient geometry algorithms.
Comments
Loading comments...