我遇到了这个问题的困难,我试图制作一堆带圆圈的正方形组,我可以让方形圆圈在正确的位置开始,但我无法添加额外的平方界。并非所有的代码都包含在内,但其他一切都是正确的我只需要帮助创建多个副本..我也需要用图形绘制面板来完成
我可以得到这个
这是我现在正在使用的代码......任何提示都会非常有用
public static void main( String[] args ) {
DrawingPanel panel = new DrawingPanel(400, 400);
Graphics g = panel.getGraphics();
drawSquaredCircles( g, 0, 0, 100, 5, 1 );
drawSquaredCircles( g, 10, 120, 24, 4, 5 );
drawSquaredCircles( g, 150, 20, 40, 5, 6 );
drawSquaredCircles( g, 130, 275, 36, 3, 3 );
}
// Draws a square figure, at the given x/y position.
public static void drawSquaredCircles( Graphics g, int x, int y, int subfigureSize, int numCircles, int numRowsCols ) {
drawCircles(g, x , y, subfigureSize, numCircles);
//add width and hight
for(int i = 0; i < numRowsCols; i++){
drawCircles(g,x , y, subfigureSize, numCircles);
}