Given four coordinates that define the corners of an irregular quadrilateral and a point defined by its coordinates, what is the simplest way to determine if the point is within or outside of the quadrilateral?
Determine if the coordinates of a point are within an irregular quadrilateral whose corners are defined by coordinates
6
$\begingroup$
geometry
computational-geometry
-
0Is the setting in the Cartesian plane? – 2010-12-15
2 Answers
5
Take a look at this wikipedia entry, or an introductory book on computational geometry.
-
0This page has some more info: http://www.ics.uci.edu/~eppstein/161/960307.html#intest – 2010-12-15
4
Although the links provided in some sense answer the question, the specific question can be answered without the full force of a point-in-polygon computation. I would recommend this. Compute whether each angle of your quad $(a,b,c,d)$ is convex or reflex. If one is reflex (say $a$), connect it to the opposite vertex $c$. If all are convex, choose any diagaonal; e.g., $(a,c)$. Now you have partitioned your quad into two triangles. Check if your point is in either triangle, by checking if it is left-of-or-on each of its three edges.