This is a test post.
function setup() {
createCanvas(600, 600);
background(220);
}
function draw() {
ellipse(300,300,60,60);
text("p5.js test", 25, 15);
line(50,50, mouseX,mouseY);
}
[OLD – FALL 2016] 15-104 • COMPUTING for CREATIVE PRACTICE
Professor Roger B. Dannenberg • Fall 2016 • Introduction to Computing for Creative Practice
This is a test post.
function setup() {
createCanvas(600, 600);
background(220);
}
function draw() {
ellipse(300,300,60,60);
text("p5.js test", 25, 15);
line(50,50, mouseX,mouseY);
}