void setup(){ size (1000,1000); background(255); } void draw(){ background(#707FF7); //face fill(#BF864D); stroke(#707FF7); ellipse(400,400,400,400); //eyes fill(#FFFFFF); stroke(#FFFFFF); ellipse(500,350,100,100); ellipse(320,350,100,100); //eyes fill(0); stroke(0); ellipse(500,350,80,80); ellipse(320,350,80,80); //nose fill(#5B40FC); stroke(#5B40FC); ellipse(410,410,80,50); //mouse fill(#FC4A7A); stroke(#FC4A7A); ellipse(410,520,70,150); //cap fill(#FC4A7A); stroke(#FC4A7A); rect(170,200,450,90); rect(250,10,300,190); //cap X fill(#FFFFFF); stroke(#FFFFFF); rect(310,100,210,50);
}
|