2012互動技術概論
銘傳大學 Processing & Arduino 課程部落格
網頁
HW01
HW02
HW03
HW04
HW05
HW06
HW07
HW08
Midterm
HW09
HW10
HW11
HW12
Final
2012年9月25日 星期二
week03,hw03
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;
}
1 則留言:
justmydesign
2012年10月30日 上午11:54
80
回覆
刪除
回覆
回覆
新增留言
載入更多…
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
80
回覆刪除