Javascript Learning From Scratch -00004
Adem Deliaslan
Posted on September 29, 2019
****face draw and coloring
noStroke(); // it means no border for shapes. *şekillerin kenar kalınlığı olmayacağını ifade eder.
// face
fill(255, 255, 0); //filling with this color inside of the shape
ellipse(202, 208, 300, 300);
// eyes
fill(46, 46, 41); // each new fill command disables the previous same command.
ellipse(157, 151, 40, 40);
ellipse(304, 142, 40, 40);
// mouth
fill(252, 65, 65);
ellipse(257, 240, 120, 136);
💖 💪 🙅 🚩
Adem Deliaslan
Posted on September 29, 2019
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.