Watch Fun Programming [video 31]
Write a program with a function that draws a smiley face. Learning to use functions can be can be tough. ASK FOR HELP.
float position;
void setup()
{
// some code
}
void draw()
{
background(0);
position = random(width);
drawSmile(position,position);
}
void drawSmile(int x, int y)
{
// some code
}
Write a function to draw your own icon (creeper, a 1619 logo, a Pokemon etc.)
Show a mentor, mark the board & claim a prize