void setup(){ size(600,600); } void draw(){ fill(255,255,0); ellipse(mouseX,mouseY,100,100); }
2.
void setup(){ size(600,600); frameRate(24); } float x=100,y=100; void draw(){ background(0,0,0); fill(random(255),random(255),random(255)); ellipse(mouseX,mouseY,120,50); fill(255,255,0); ellipse(x,y,50,120); x=x*0.9 + mouseX*0.1; y=y*0.9 + mouseY*0.1; }
3.
今天的進度大致上都還能跟上
希望到了新教室有廣播系統的話能有更好的學習效率
不然坐的比較遠實在是看不太到投影幕上的程式碼
81
回覆刪除