In this project you will create a program to make abstract artwork using stamped shapes!
This project covers elements from the following strands of the Raspberry Pi Digital Making Curriculum:
activityOf
In CodeWorld, programs that respond to the user are called activities, and you'll write them with a function called activityOf
.
An activity is built out of three parts:
initial
, and
it tells you the state when the activity starts.change
, and it tells you how the state changes when something happens.
That could be a click of a mouse, a key press, or just time passing.picture
,
and it tells you how the state should be drawn on the screen as a Picture
.In this step you'll create a CodeWorld activity that draws a shape on the canvas.