แสดงบทความที่มีป้ายกำกับ Lab 0 แสดงบทความทั้งหมด
แสดงบทความที่มีป้ายกำกับ Lab 0 แสดงบทความทั้งหมด

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

Lab0_FAV_Song

"So give me reason !!! to prove me WRONG!!!!"

"LINKIN PARK"


//FAV Song
void setup() {
  size(500, 500);
  background(0);//black
  //backgroun's circle
  stroke(255);//black line
  strokeWeight(14);//thick line
  fill(0);//line's color
  ellipse(250, 250, 250, 250);//big circle with nothing  inside of it

  //Linkin Park symbol
  line(260, 125, 185, 290);
  line(185, 290, 325, 290);
  line(325, 290, 275, 180);
  line(275, 180, 195, 360);

  //open the circle
  stroke(0);
  line(258, 100, 238, 140);
  line(215, 350, 200, 380);

  //title
  fill(255);
  textSize(40);
  textAlign(LEFT);
  text("LINKIN PARK", 135, 450);

}

เพลงที่กล่าวถึง


วันพุธที่ 12 สิงหาคม พ.ศ. 2558

Lab0_Fav_Book

ถึงตัวจะเป็นเด็ก !! แต่สมองนั้นเป็นผู้ใหญ่ !! ชื่อของเขาคือ !!ยอดนักสืบ โคนัน !!!!!

//FAV Book
void setup() {
  size(500, 500);
  background(255);//white
  fill(#B3CFF0);//blue
  strokeWeight(8);//thick line
  rect(80,130,340,220);//body of book
  strokeWeight(6);//thin line
  fill(#78B2F7);//dark blue
  rect(230,130,40,220);//spine 
  rect(290,150,110,60);//title's frame
  fill(0);//black
  textSize(30);
  text("Conan",300,190);//Title
  strokeWeight(3);//Thinest Line
  line(250,130,120,100);//pages1 r
  line(250,130,110,108);//pages2 r
  line(250,130,100,115);//pages3 r
  line(120,100,80,130);//pages border r
  line(250,130,380,100);//pages1 l
  line(250,130,390,108);//pages2 l
  line(250,130,400,115);//pages3 l
  line(380,100,420,130);//pages border l
  
}

Lab0_Fav_Movie

การ์ตูนในตำนานที่เป็น THE MOVIE !!! 

Doraemon : Stand by me !


//MY FAV MOVIE
void setup() {
  size(500, 500);
  stroke(#0054A5);
  strokeWeight(3);
  background(#FACFF4);
  fill(#0005F0);//blue
  textSize(30);
  text("Doraemon : Stand by me", 75, 420);//Title
  fill(#236ED6);//blue
  ellipse(250, 180, 350, 295);//head
  fill(255);//white
  ellipse(250, 210, 250, 205);//face
  ellipse(210, 120, 80, 100);//right hand
  ellipse(290, 120, 80, 100);//left hand
  fill(#F21D1D);//red
  rect(110, 300, 280, 30);//cat collar
  fill(255);//white
  ellipse(120, 300, 60, 60);//right eye
  ellipse(380, 300, 60, 60);//left eye
  fill(#FF292D);//red
  ellipse(250, 175, 45, 40);//nose
  fill(255);//white
  arc(250, 235, 180, 50, 0, PI);//cute smile <3
  fill(#FAD449);//gold or yellow
  ellipse(250, 300, 40, 40);//bell
  fill(#3C60B9);//blue
  ellipse(225, 135, 20, 20);//inner eye(right)
  ellipse(275, 135, 20, 20);//inner eye(left)
  line(250, 194, 250, 260);//mouth (line)
  line(210, 210, 140, 210);// cat's whiskers mid right
  line(290, 210, 360, 210);// cat's whiskers mid left
  line(210, 220, 140, 230);// cat's whiskers below right
  line(290, 220, 360, 230);// cat's whiskers below left
  line(210, 200, 140, 190);// cat's whiskers above right
  line(290, 200, 360, 190);// cat's whiskers mid left
  line(232,290,267,290);//bell line1
  line(210,300,290,300);//bell line2
  strokeWeight(7);
  line(250,302,250,320);//bell line3
  stroke(255);//white line
  fill(255);//white
  ellipse(258, 170, 12, 12);//reflect nose
}

Lab0_Fav_Game

เกมส์ในตำนาน ! PACMAN!!

//Fav_Game
void setup() {
  int count=80;
  size(500,500);
  background(#03C2FA);//bg blue
  stroke(0);
  strokeWeight(4); //thick line
  fill(#ffcc00);//yellow pacman
  arc(120,250,200,200,QUARTER_PI,PI+PI-QUARTER_PI,); //Mr.Pacman
  fill(0);//black eye
  ellipse(100,200,40,40); //Eye
  fill(#cc0033);//red
  ellipse(230,250,40,40);//Mr.Pacman's Foods
  ellipse(230+count,250,40,40);
  ellipse(230+count+count,250,40,40);
  ellipse(230+count+count+count,250,40,40);
  textSize(50);
  fill(0);
  text("PACMAN",150,80);//name tag
  line(0,370,500,370);//decorate line
  line(0,130,500,130);
}