2012年9月25日 星期二

Week03, HW03

1. 東西跟著滑鼠動(簡易版)

程式碼 :

void setup(){
  size(600,600);
}

void draw(){
  fill(255,0,255);
  rect(100,100,100,100);
  rect(400,100,100,100);

  fill(0,255,255);
  ellipse(mouseX,mouseY,100,100);
}





2. 東西追著滑鼠跑(簡易版)

程式碼 :
void setup(){
  size(600,600);
}
float x=100,y=100;
void draw(){
  background(0,0,0);

  fill(255,255,255);
  ellipse(mouseX,mouseY,100,100);

  fill(255,255,0);
  ellipse(x,y,50,50);

  x=x*0.8 + mouseX*0.2;
  y=y*0.8 + mouseY*0.2;
}



3.心得
東西隨著滑鼠跑,突然想到很多小遊戲的應用
都會用到這個程式
感覺期中&期末的作業
會用的到 :)

1 則留言: