-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPOLYGONP.CPP
58 lines (53 loc) · 1.21 KB
/
POLYGONP.CPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
struct Point{
int x,y;
};
void drawPoly(Point ver[],int n)
{ for(int i=0;i<n;i++)
{ line(ver[i].x,ver[i].y,ver[(i+1)%n].x,ver[(i+1)%n].y);
}
}
int isInside(Point poly[],int n,Point test)
{int i,j,c=0;
for(i=0;i<n;i++)
{j=(i+1)%n;
//check whether point lie on vertex
if((test.x==poly[j].x&&test.y==poly[j].y)||(test.x==poly[i].x&&test.y==poly[i].y))
{c=1;
break;
}
if(poly[j].y!=poly[i].y)
{if((poly[i].y>test.y)!=(poly[j].y>test.y))
if(test.x<(poly[j].x-poly[i].x)*(test.y-poly[i].y)/(poly[j].y-poly[i].y)+poly[i].x)
c=!c;
else if(test.x==(poly[j].x-poly[i].x)*(test.y-poly[i].y)/(poly[j].y-poly[i].y)+poly[i].x)
{c=1;
break;
}
}
else{
if((poly[i].x>test.x)!=(poly[j].x>test.x)&&(poly[i].y==poly[j].y&&poly[i].y==test.y))
{c=1;
break;
}
}
}
return c;
}
void main(){
int gd=DETECT,gm;
initgraph(&gd,&gm,"C:\\tc\\bgi");
Point polygon[]={{100,100},{100,200},{200,200},{200,100}},p={200,200};
int n=sizeof(polygon)/sizeof(polygon[0]);
int j=isInside(polygon,n,p);
// drawPoly(polygon,n);
// putpixel(p.x,p.y,RED);
if(j==1)
printf("YES");
else
printf("NO");
getch();
closegraph();
}