top of page
Search

shapes

  • Writer: Renée West
    Renée West
  • Oct 26, 2023
  • 1 min read

ree





I can't take like a big ss so this was the best I could do. I was also just playing around with this more than anything. It's nice to just play sometimes.






function setup() {

createCanvas(1280,720);

background(254,220,215);

}


function draw() {

for(let y=0; y <=height; y+=40){

for (let x=0; x <=width; x+=40){

noStroke();

fill(248,100);

ellipse(x,y,40,40);

}}

fill(202,249,253,50);

for(let y=0; y <=height; y+=60){

for (let x=0; x <=width; x+=60){

noStroke();

ellipse(x,y,40,40);

}}

fill(255,163,162,10);

for(let y=0; y <=height; y+=100){

for (let x=0; x <=width; x+=100){

noStroke();

rect(x,y,40,40);

}}

fill(254,220,215,50);

for(let y=0; y <=height; y+=60){

for (let x=0; x <=width; x+=60){

noStroke();

rect(x,y,80,40);

}}

noStroke();

fill(255,251,180);

ellipse(820,240,130,250);

ellipse(340,240,130,250);

ellipse(580,225,500,390);

fill(92,66,35);

ellipse(450,205,30,30);

ellipse(700,205,30,30);

ellipse(580,250,40,20);

ellipse(577,70,300,80);

ellipse(575,25,50,20);

}

 
 
 

Recent Posts

See All
Final

My favorite drinks in this world are Green tea, Black Coffee, and Strawberry Matcha Lattes. Inspired by the latter, I wanted to create a...

 
 
 

Comments


bottom of page