void setup(){
size(600,600);
background(0,0,255);
}
void draw(){
fill(255,255,255);
ellipse(100,100,100,100);
fill(0,255,0);
rect(mouseX,mouseY,50,50);
}
void setup(){
size(600,600);
frameRate(1);
}
float x=100,y=100;
void draw(){
background(0,0,0);
fill(255,255,0);
ellipse(mouseX,mouseY,50,50);
fill(0,255,0);
ellipse(x,y,150,150);
x=x*0.9 + mouseX*0.1;
y=y*0.9 + mouseY*0.1;
}
心得感想:
今天老師教了很多,讓我在這三堂課學到了不少,有跟隨的,也有殘影變化的
雖然第三個很難,但我會盡我的努力去學看看,謝謝老師。
80
回覆刪除