DEV Community

Adem Deliaslan
Adem Deliaslan

Posted on

Javascript Learning From Scratch -00004

****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);

output: Alt Text

Top comments (0)