这是我的代码:
import java.awt.Graphics;
import java.awt.GridLayout;
import javax.swing.JPanel;
import javax.swing.JFrame;
public class fourfans extends JFrame {
public fourfans(){
setTitle("DrawArcs");
add(new ArcsPanel());
add(new ArcsPanel());
add(new ArcsPanel());
add(new ArcsPanel());
}
public static void main(String[] args) {
fourfans frame = new fourfans();
GridLayout test = new GridLayout(2,2);
frame.setLayout(test);
frame.setSize(250 , 300);
frame.setLocationRelativeTo(null); // center the frame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
class ArcsPanel extends JPanel{
protected void paintComponent(Graphics g){
super.paintComponent(g);
int xCenter = getWidth() / 2;
int yCenter = getHeight() / 2;
int radius = (int)(Math.min(getWidth(), getHeight()) * 0.4);
int x = xCenter - radius;
int y = yCenter - radius;
g.fillArc(x, y, 2 * radius, 2 * radius, 0, 30);
g.fillArc(x, y, 2 * radius, 2 * radius, 90, 30);
g.fillArc(x, y, 2 * radius, 2 * radius, 180, 30);
g.fillArc(x, y, 2 * radius, 2 * radius, 270, 30);
g.drawOval(x, y, 2 * radius, 2 * radius);
}
}
每次我尝试将 2 * 半径更改为 2.1 * 半径时,它都不会让我这样做,因为那是双倍的。然后,当我输入一个大于弧的固定数字时,它会使圆偏离中心。