function setup() {
// put setup code here
createCanvas(500, 500);
}
function draw() {
// put drawing code here
background(255, 90, 150, 90);
stroke(0);
strokeWeight(1);
ellipse(mouseX, mouseY, 100, 80);
}
JS is cool!
[OLD FALL 2018] 15-104 • Introduction to Computing for Creative Practice
Professor Roger B. Dannenberg • Fall 2018 • Introduction to Computing for Creative Practice
function setup() {
// put setup code here
createCanvas(500, 500);
}
function draw() {
// put drawing code here
background(255, 90, 150, 90);
stroke(0);
strokeWeight(1);
ellipse(mouseX, mouseY, 100, 80);
}
JS is cool!