/******************************************************************* Template for your function that subdivides a concave polygon into convex polygons and draws them. ******************************************************************** Author: Stan Sclaroff Date: September, 9 2004 Comments: ********************************************************************/ #include #include #include #include "const.h" #include "types.h" #include "funcs.h" void drawConcavePoly(polygonType *poly) { /* this is only here until you write your concave handler */ /* comment it out once you do! */ drawConvexPoly(poly); /* your code for subdividing/drawing a concave polygon here */ }