code:uk_polygon
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
code:uk_polygon [2009/06/27 11:36] – rocketboy | code:uk_polygon [2010/10/15 06:58] (current) – Add C code to test if point is inside polygon fsphil | ||
---|---|---|---|
Line 65: | Line 65: | ||
</ | </ | ||
+ | ====== C ====== | ||
+ | A C function to test if a point (x, y) is inside a polygon (poly, points). Returns 0 if outside, !0 if inside the polygon. poly points to an array of x, y coordinates of the polygon. points is the number of points in the array. | ||
+ | <code c> | ||
+ | int pointinpoly(float *poly, int points, float x, float y) | ||
+ | { | ||
+ | float *p = poly; | ||
+ | float *l = & | ||
+ | int c = 0; | ||
+ | |||
+ | for(; points; points--, l = p, p += 2) | ||
+ | { | ||
+ | if(y < p[1] && y < l[1]) continue; | ||
+ | if(y >= p[1] && y >= l[1]) continue; | ||
+ | if(x < p[0] + (l[0] - p[0]) * (y - p[1]) / (l[1] - p[1])) continue; | ||
+ | |||
+ | c = !c; | ||
+ | } | ||
+ | |||
+ | return(c); | ||
+ | } | ||
+ | </ |
code/uk_polygon.1246102611.txt.gz · Last modified: 2009/06/27 11:36 by rocketboy