/******************************************************************* Template for your function that tests to see if a 2D point is inside a polygon. Returns TRUE if "inside", FALSE if otherwise. A point on the edge of a polygon is considered as "inside" ******************************************************************** Author: Stan Sclaroff Date: September, 9 2004 Comments: ********************************************************************/ #include "const.h" #include "types.h" #include "funcs.h" int insidePoly(polygonType *poly, int x, int y) { /* For now -- always returns FALSE */ /* remove it when you write your own inside outside test */ return FALSE; /* your code goes here */ }