วันศุกร์ที่ 11 กันยายน พ.ศ. 2558

Lab04 : Book

int w=500, shown=0;
void setup() {
  size (500, 500);
  frameRate(30);
}
void draw() {
  fill(100, 50);
  rect(0, 0, width, height);
  if (w>250) {
    keroro(0, 0, w, w);
    w-=1;
    if (w==250)shown=1;
  }
  if (shown==1) {
    int i=0, j=0, dx=0, dy=0;
    while (i<2) {
      while (j<2) {
        keroro(dx, dy, w, w);
        dx+=w;
        j++;
      }
      j=0;
      dx=0;
      dy+=w;
      i++;
    }
  }

  if (mousePressed) {
    shown=0;
    w=500;
  }
}


void keroro(int x, int y, int w, int h) {
  //book
  strokeWeight(3);
  fill(#1ED36E);
  rect(x, y, w, h);
  //face
  fill(255);
  rect(x, y, w, h*3/4);

  //yellow cap 
  fill(#F5FF6A);
  rect(x, y, w, h*0.125);
  //star
  fill(#F50529);
  noStroke();
  quad(x+w*0.5, y, x+w*0.55, y+h*0.1, x+w*0.5, y+h*0.075, x+w*0.45, y+h*0.1);
  triangle(x+w*0.42, y+h*0.0375, x+w*0.58, y+h*0.0375, x+w*0.5, y+h*0.075);

  //green face
  stroke(0);
  strokeWeight(3);
  fill(#33AF47);
  rect(x, y+h*0.125, w, h*0.46);

  //mouth1
  fill(255);
  arc(x+w*0.5, y+h*0.725, w*1.4, h*0.375, QUARTER_PI+PI, 2*PI-QUARTER_PI);
  //mouth2
  fill(#FA7474);
  arc(x+w*0.5, y+h*0.54, w*0.25, h*0.125, 0, PI);

  //eye
  fill(255);
  ellipse(x+w*0.23, y+h*7/20, w/3, h/4);
  fill(0);
  ellipse(x+w*0.23, y+h*7/20, w/6, h/8);
  fill(255);
  ellipse(x+w*0.77, y+h*7/20, w/3, h/4);
  fill(0);
  ellipse(x+w*0.77, y+h*7/20, w/6, h/8);

  //TEXT
  textSize(w*0.1);
  text("KERORO", x+w*0.3, y+h-20);
}


ไม่มีความคิดเห็น:

แสดงความคิดเห็น

commit เพิ่มเติม : เพื่ม userstory, bookmark

>>  add userstory ทำการเพิ่ม userstory ใน functional tests >>  add bookmark for user เพิ่มระบบ Bookmark โดยการสร้าง model ขึ...