WEEK: 11
Active: October 26th - November 1st
Work Due: November 2nd @ 11:59PM

Setup the Scene

I find in programming that often is it is useful to have some context indicating why I am creating something. That is why I had you create a self-portrait. Now, we are going to create some interactive art using events.

First, let’s set up our scene.

    var x = 50;
    var y = 50;
    var diameter = 25;
    function setup()
    {
        createCanvas(800,600);
    }
    function draw()
    {
        background(0);
        fill(24,200,29);
        circle(x,y,diameter);
    }

Here we just created a simple black background and added a greenish circle to it.

We know how to make it move.

    var x = 50;
    var y = 50;
    var diameter = 25;
    function setup()
    {
        createCanvas(800,600);
    }
    function draw()
    {
        background(0);
        fill(24,200,29);
        circle(x,y,diameter);
        x+=10;
    }

That moves our circle to the right because we are adding to x. Remember that x,y, and diameter are variables. We are just changing (or can change) the values stored in those variables, which makes them useful. Yes? Good!

Hopefully, you also found out that if you change x and y and diameter at the same time, some exciting things happen. The concepts we learned last week will be the starting point for this week.

    var x = 50;
    var y = 50;
    var diameter = 25;
    function setup()
    {
        createCanvas(800,600);
    }
    function draw()
    {
        background(0);
        fill(24,200,29);
        circle(x,y,diameter);
        x+=10;
        y+=3;
        diameter+=8;
    }

Fun! Where do we go from here? Let’s talk about the conditions. What are those? If, if/else, and if/else if statements. We have seen the first two, but maybe not the third one. We will look at those.

Experiment from the previous tabs.


Previous section:
Next section: