?? explode.java
字號:
import java.awt.*;
public class Explode {
int x,y;
private boolean live=true;
int[] diameter={4,7,12,18,26,32,49,30,14,6};
int step=0;
private TankClient tc;
public Explode(int x,int y,TankClient tc){
this.x=x;
this.y=y;
this.tc=tc;
}
public void draw(Graphics g){
if(!live) {
tc.explodes.remove(this);
return;
}
if(step==diameter.length){
step=0;
live=false;
return;
}
Color c=g.getColor();
g.setColor(Color.GREEN);
g.fillOval(x, y, diameter[step], diameter[step]);
g.setColor(c);
step++;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -