xxxxxxxxxx
36
/*
* Creative Coding Workshop #4 Demo - Face with Class
*
* Jack B. Du (github@jackbdu.com)
*/
// a class (template/blueprint) for face
class Face {
// constructor for initializing the object with these provided parameters
constructor(x, y, d) {
this.x = x;
this.y = y;
this.d = d;
}
// display current face
display() {
circle(this.x,this.y,this.d);
circle(this.x-this.d/5,this.y-this.d/10,this.d/4);
circle(this.x+this.d/5,this.y-this.d/10,this.d/4);
}
}
// initialize face as a global variable
let face = new Face(100,100,100);
function setup() {
createCanvas(400, 400);
background(220);
// display face
face.display();
}
function draw() {
}