I have 4 points. If I were to draw lines from every point to every other point, I will get 4 exterior lines and 2 lines crossing in the middle. What I'm trying to identify is the point at which the 2 crossing lines intersect. All I know is the coordinates of each of the 4 points (x0, y0, x1, y1, x2, y2, x3, y3).
Is there a simple solution to this that I'm missing?
Edit: Edit: Fixed. I was missing the two formulas: x = x1 + ua (x2 - x1) and y = y1 + ua (y2 - y1).