Hi there! I am Studyfin, your tutor. Let's explore how we can use code to make amazing art and animations!
Creative coding lets you use computer programming as an artistic tool. Instead of just writing text, you write code to draw shapes, mix colors, and create movement on your screen.

Sometimes your code does not work on the first try, and that is totally normal! To resolve these challenges, you can set small goals and show courage by trying new ideas even when you feel stuck.
To make things move, we change their positions over time. We use loops in our code to draw a shape, change its position slightly, and then redraw it quickly to create the illusion of smooth motion.
Imagine you want to code a bouncing ball animation, but your ball keeps disappearing off the screen. Let's walk through how to use goal setting and personal confidence to independently solve this coding challenge.
- Identify the challenge: The ball flies off the screen because the code does not check where the ball is.
- Set a clear goal: Make the ball bounce back when it hits the edge of the screen.
- Build your confidence: Remind yourself that coding is about trial and error, and you have the skills to solve this.
- Write a test rule: Add an 'if' statement to check if the ball's position is greater than the screen width.
- Test and adjust: Run the code, watch the ball bounce, and celebrate solving the challenge on your own!
