วันอาทิตย์ที่ 16 สิงหาคม พ.ศ. 2558

Lab 0 : My favorite song



void setup() {
  size(600,600);
  background(#000000);
  println("THE");
  print("Linkin Park");
 
  ellipse(300,300,450,450);        //inside circle
  fill(#000000);
  ellipse(300,300,400,400);       
 
  fill(#ffffff);
  triangle(300,130,150,400,450,400);     //triangle
  fill(#000000);
  triangle(300,180,190,380,410,380);    
 
  strokeWeight(30);                //black line
  stroke(#000000);
  line(322,50,176,320);
  line(344,130,240,320);
  line(355,130,245,320);
  line(260,420,208,510); 
   
  stroke(#ffffff);                 //white line                                                     
  line(335,225,198,468);

  strokeWeight(5);                 //outside circle
  noFill();
  ellipse(300,300,470,470);
}

1 ความคิดเห็น: