xxxxxxxxxx
50
// this is a comment
/*
this is a multiline comment
self portrait
by owen roberts
2/5/2024
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noStroke();
fill(121,121,196);
// face
rect(100, 100, 100, 200, 20);
// eyes
noFill();
stroke("rgb(0,0,255)");
strokeWeight(8);
ellipse(100, 100, 100);
ellipse(200, 100, 100);
fill(173,216,230,100);
ellipse(100, 100, 100);
ellipse(200, 100, 100);
// mouth
line(75, 250, 225, 250);
}
function mousePressed() {
// save('self-portrait-1.jpg');
console.log(mouseX, mouseY);
}