xxxxxxxxxx
23
/*
* Creative Coding Workshop #1 Demo - Code from P5 Code Painter
*
* Jack B. Du (github@jackbdu.com)
*/
function setup() {
// create a 400px by 400px canvas
createCanvas(400, 400);
}
function draw() {
// below code is copied from P5 Code Painter, which is under development
background(255,255,255,255);
fill(255,49,50,255);
stroke(0,0,0,255);
strokeWeight(10);
circle(177,200,80);
circle(78,196,80);
fill(255,255,255,255);
strokeWeight(9);
ellipse(123,304,155,41);
}