Ok I have an adjacency list. (no problem) I have a collection of random 2d vectors (2d lines). (no problem) Some of these intersect each other. (no problem) I can loop through and calculate intersections fine. (no problem) My adjacency list is fine. (no problem) My problem is devising the algorithm to loop through a random list of 2d lines and put these into my adjacency list ready to be searched. (problem!)
I created a list of intersections but can't figure how to get the adjacent intersections for any given intersection! I would post my code, but have tried so many algorithms there are too many and none work.