First Sketch



function setup() {
createCanvas(600, 800)
  background(220);
ellipse(70, 70, 100, 100)

ellipse(70, 70, 50, 50)

ellipse(100, 200, 80, 60)
ellipse(100, 200, 40, 80)
  quad(450,350, 150,350, 150,30, 500,8,)
point(70, 70)
  line(70, 70, 100, 200)
line(70,70,400,300)
  

  triangle(400,300, 200,300, 500,400)
  line(200,300, 70,70)
  line(200,300, 100,200)
  
  
}




function draw() {
 
}

Comments