3 回答

TA貢獻1993條經(jīng)驗 獲得超6個贊
為了保持油漆,遵循阿比納夫的想法。但是要更改顏色,請參閱下面的代碼:(一切都不是固定的,但您可以從這個想法開始)
public class ColorArcs extends Applet
{
int width=50;
int length=50;
int topx=200-25,topy=200-25;
public void paint(Graphics g)
{
for(;length<250;)
{
length+=2;
width++;
if(length>=50&&length<=75)
setForeground(Color.cyan);
}
int length_ = 50; width=50;
for(;length_<250;)
{
g.drawArc(200-length_/2,200-width/2,length_,width,0,180);
length_+=2;
width++;
try
{
Thread.sleep(20);
}
catch(InterruptedException ie){}
}
}
}
添加回答
舉報