introduction to computation
1.10-2.9.2022
wintersession 2022

session two: time and interactions

function setup() {
createCanvas(400, 400);
}

function draw() {
stroke(300);
noFill()
ellipse(mouseX, mouseY, 50,50);
function setup() {
createCanvas(400, 400);
}

function draw() {
stroke(300);
noFill()
ellipse(200,200,mouseX, mouseY);
function setup() {
createCanvas(400, 400);
}

function draw() {
fill (300);
ellipse(200,200,mouseX,mouseY);

function setup() {
createCanvas(400, 400);
}

function draw() {
fill (300);
ellipse(mouseX,mouseY,50,50);