UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


code:uk_polygon

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
code:uk_polygon [2009/06/27 11:36] rocketboycode:uk_polygon [2010/10/15 06:58] (current) – Add C code to test if point is inside polygon fsphil
Line 65: Line 65:
 </code> </code>
  
 +====== 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 = &poly[points * 2 - 2];
 +        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>
code/uk_polygon.1246102611.txt.gz · Last modified: 2009/06/27 11:36 by rocketboy

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki