Sample Text
function setup() {
createCanvas(200, 20);
background(220);
}
function draw() {
createCanvas(300, 300);
background(200);
ellipse(150, 150, 100, 70);
}
[OLD FALL 2019] 15-104 • Introduction to Computing for Creative Practice
Professor Roger B. Dannenberg • Fall 2019 • Introduction to Computing for Creative Practice
Sample Text
function setup() {
createCanvas(200, 20);
background(220);
}
function draw() {
createCanvas(300, 300);
background(200);
ellipse(150, 150, 100, 70);
}