xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
//butterfly on the left
butterfly(50,50);
}
/* function for a butterfly that lets you customize x, y and size */
function butterfly(x, y, size){
textSize(size);
text(`🦋`, x, y);
}