0

これは私のコードです:

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 * 半径に変更しようとするたびに、それは double であるため変更できません。次に、円弧よりも大きい固定数を入れると、円が中心から外れます。

4

1 に答える 1

0

円弧よりも大きな数値を入力すると円が中心からずれてしまう理由は、Java が左上隅を円/円弧の原点ではなく x,y としてプラグインしているためです。したがって、それらの 1 つを大きくした場合、その x と y を再計算する必要があります。たとえば、

int radius = (int)(Math.min(getWidth(), getHeight()) * 0.4);
int radiusOval = (int)(Math.min(getWidth(), getHeight()) * 0.4 * 1.05);

int x = xCenter - radius;
int y = yCenter - radius;
int xOval = xCenter - radiusOval;
int yOval = yCenter - radiusOval;

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(xOval, yOval, (int)(2.1 * radius), (int)(2.1 * radius));   
于 2013-03-26T22:31:23.890 に答える