function setup() {
createCanvas(500, 500); // double slashes = comments
background(210,45,45)
}
function draw() {
ellipse(60,60, 100, 100)//(x,y,w,h)
}
[OLD – FALL 2016] 15-104 • COMPUTING for CREATIVE PRACTICE
Professor Roger B. Dannenberg • Fall 2016 • Introduction to Computing for Creative Practice
function setup() {
createCanvas(500, 500); // double slashes = comments
background(210,45,45)
}
function draw() {
ellipse(60,60, 100, 100)//(x,y,w,h)
}