xxxxxxxxxx
28
/*
* Creative Coding Workshop #2 Demo - Bonus - Vertex - Curve
*
* Jack B. Du (github@jackbdu.com)
*/
function setup() {
// create a 400px by 400px canvas
createCanvas(400, 400);
}
function draw() {
// specify a background for each frame
background(220);
// set the thickness of stroke to 10 pixels
strokeWeight(10);
// turn off fill color
noFill();
beginShape();
curveVertex(0,0);
curveVertex(100,100);
curveVertex(200,400);
curveVertex(400,200);
curveVertex(300,100);
curveVertex(200,100);
curveVertex(200,100);
endShape();
}