code:uk_polygon
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
code:uk_polygon [2009/06/27 11:19] – rocketboy | code:uk_polygon [2010/10/15 06:58] (current) – Add C code to test if point is inside polygon fsphil | ||
---|---|---|---|
Line 1: | Line 1: | ||
Code and KML for partial UK polygon. | Code and KML for partial UK polygon. | ||
+ | |||
+ | {{code: | ||
Line 25: | Line 27: | ||
}; | }; | ||
- | </ | + | </ |
+ | <code KML> | ||
<kml xmlns=" | <kml xmlns=" | ||
< | < | ||
- | < | + | < |
< | < | ||
< | < | ||
Line 62: | 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.1246101578.txt.gz · Last modified: 2009/06/27 11:19 by rocketboy