我试图在一个大圆圈内绘制一堆具有不同绿色深浅的小圆圈以获得“灌木”外观,但我不知道如何让所有小圆圈形状为一个大圆圈。我只能弄清楚如何在一个矩形内得到它。
public void paintComponent(Graphics g)
{
super.paintComponent(g);
for(int i = 0; i < 1000; i++){
int redV = (int) ((Math.random() * 100) + 27);
g.setColor(new Color(red, red + 31, red - 15));
int x = (int) ((Math.random() * 400) + 150);
int y = (int) ((Math.random() * 500) + 200);
g.fillOval(x, y, 50, 50);
}
}