/******************************************************************* Template for your function that tests to see if the polygon is concave. Returns TRUE if concave, FALSE if otherwise. ******************************************************************** Author: Stan Sclaroff Date: September, 9 2004 Comments: ********************************************************************/ #include "const.h" #include "types.h" #include "funcs.h" int concavePoly(polygonType *poly) { return FALSE; }