First p5 Sketch


 function setup() {

  createCanvas(900, 1400);

  background(35,223,255);

  

  fill(255,5,84)

  strokeWeight(3);

  circle(40,40,40);

 

  fill(150);

  strokeWeight(5);

  point(75,200);

  line(100,100,300,350);

  

  

  fill(100,53,133);

  triangle(600,20,800,250,400,200);

  square(-20,150,60);

  

  

  fill(25,82,246,175);

  quad(158,55,199,14,392,66,351,107);

  triangle(347,54,392,9,392,66);

  triangle(158,55,290,91,290,112);

}


function draw() {  

}

Comments

Popular Posts