xxxxxxxxxx
47
/*
----- Coding Tutorial by Patt Vira -----
Name: Draw & Color Shapes
Video Tutorial: https://youtu.be/DDNt_cq56Bo?si=E-6XcsEojKBnSzqW
Connect with Patt: @pattvira
https://www.pattvira.com/
----------------------------------------
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
strokeWeight(1); // Making stroke's size 1
stroke(0); // Making stroke's color black
// Eyes
fill(255);
rect(120, 80, 40, 40);
rect(200, 80, 40, 40);
fill(0);
ellipse(140, 100, 20, 20);
ellipse(220, 100, 20, 20);
// Body
fill(255, 125, 0);
rect(120, 120, 120, 80);
// Legs
fill(255, 25, 120);
rect(120, 200, 40, 80);
rect(200, 200, 40, 80);
// Feet
fill(0);
rect(120, 280, 40, 40);
rect(200, 280, 40, 40);
// Mouth
stroke(0);
strokeWeight(3);
line(160, 160, 200, 160);
}