/* CPE 101      Fall 2009        */
/* Lab 7                         */
/* Alex Dekhtyar                 */
/* Graphics Library              */
/* Implementations of functions  */


/* THIS IS A STUB                */



#include "graphics.h"
#include <math.h>
#include <stdio.h> /* debugging purposes only */

/* put your #defines here                     */


/* putSmiley():  draw an image of a smiley face       */
/* char image[][][] : image array                     */
/* x,y : center of the smiley face                    */
/* radius : radius of the smiley face                 */
/* color: color of the smiley face                    */

void  putSmiley(char image[][WIDTH][COLORS], int x, int y, int radius, char color[]) {


		 
   /* we are done */
   
return;
}


/* putYingYang():  draw a ying-yang image                          */
/* char image[][][] : image array                                */
/* x,y : center of the ying-yang circle                          */
/* radius : radius of the ying-yang circle                       */
/* ying[], yang[]: colors of the ying (top) and the yang(bottom) */

void  putYingYang(char image[][WIDTH][COLORS], int x, int y, int radius,
                  char ying[], char yang[]) {
		  
return;
}


/* Put the remaining functions below */