/* CPE 101 Fall 2008 */ /* Alex Dekhtyar */ /* Lab 7 image.h test */ /* test for putRing() */ #include "image.h" int main() { char image[HEIGHT][WIDTH][COLORS]; char white[COLORS], color[COLORS]; setColor(white, 255,255,255); setColor(color, 255,0,0); blankImage(image,white); putRing(image, 200,300,100, 60, color); drawImage(image); return 0; }