线条需要添加随机颜色。我知道我的基础是着色线,但是当我运行applet时,线条保持黑色。它可能是一个简单的错误,但我是新手所以请帮助!
int random = (int)Math.random();
for (int i = 0; i <= 100; i++)
{
int R = (int)(Math.random() * 255);
int G = (int)(Math.random() * 255);
int B = (int)(Math.random() * 255);
Color c = newColor(R,G,B);
g.setColor(c);
int x1 = (int)(Math.random() * 400) + 10;
int y1 = (int)(Math.random() * 300) + 10;
int x2 = (int)(Math.random() * 400) + 10;
int y2 = (int)(Math.random() * 300) + 10;
g.drawLine(x1,y1,x2,y2);
}