0

您好,我对 java 还很陌生,并且已经在这个问题上停留了一段时间,所以希望有人能够拯救我。基本上我正在创建一个可以绘制方程的程序,现在我正在测试 -10 到 10 之间的 x^2。我可以在正确的位置绘制点,但我不知道如何填写点之间的点,所以它看起来像一个真实的图表。

这是我的代码:

import java.util.Scanner;
import javax.swing.JFrame;
import java.awt.*;

class PlotGraph extends JFrame{


public void paint(Graphics l){

    l.drawLine(50, 300, 550, 300); //x axis
    l.drawLine(300, 550, 300, 50); //y axis
    //Orignin x = 300 y = 300

    int xmin, xmax, y, tmin, tmax;
    xmin =(-10);
    xmax = 10;
    int x_bet, y_bet;

    while(xmin<=xmax){
        y = 300-(xmin*xmin);
        l.drawLine(xmin+300, y, xmin+300, y);

        //while(x_bet>xmin){
        //l.drawLine(, , , );
        //}

        xmin++;
    }



}

public static void main(String [] args) {

    PlotGraph graph = new PlotGraph();
    graph.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    graph.setSize(600, 600);
    graph.setVisible(true); 
    graph.setTitle("PlotGraph");

}


}
4

3 回答 3

2

另一种方法是创建一个GeneralPath,像这样。

import javax.swing.JFrame;
import java.awt.*;
import java.awt.geom.*;

class PlotGraph extends JFrame{

    public void paint(Graphics l){

        l.drawLine(50, 300, 550, 300); //x axis
        l.drawLine(300, 550, 300, 50); //y axis

        int xmin, xmax, y, tmin, tmax;
        xmin =(-10);
        xmax = 10;
        int x_bet, y_bet;
        GeneralPath gp = new GeneralPath();

        y = 300-(xmin*xmin);
        gp.moveTo((double)xmin+300, (double)y);
        while(xmin<=xmax){
            y = 300-(xmin*xmin);
            gp.lineTo((double)xmin+300, (double)y);

            xmin++;
        }

        Graphics2D g2 = (Graphics2D)l;
        g2.setColor(Color.RED);
        g2.draw(gp);
    }

    public static void main(String [] args) {
        PlotGraph graph = new PlotGraph();
        graph.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        graph.setSize(600, 600);
        graph.setVisible(true);
        graph.setTitle("PlotGraph");
    }
}

这个来源仍然有问题:

  1. GUI 更新应在 EDT 上完成。
  2. 自定义绘画最好在 a JPanel/中完成,JComponent或者BufferedImage在 a 中显示JLabel
  3. “图形组件”应声明首选大小,而不是为框架设置大小。
于 2013-03-10T06:15:49.763 回答
0

也许试试这个:

int x = xmin;
int last_y = 300-(x*x);
for (x = xmin+1; x<=xmax; x++);
    y = 300-(x*x);
    l.drawLine(x-1, last_y, x, y);
    last_y = y;
}

您希望在先前的 x 和 y 坐标与当前坐标之间绘制一条线。这last_y就是为了。

于 2013-03-10T05:32:11.137 回答
0

有几种方法可以做到这一点。如果这是一项作业,那么我猜您的教授正在寻找您想出的方法。在最基本的级别上,您只需从最后一点到当前点画一条线。你怎么能做到这一点?也许是不同颜色的折线?也许使用一些数学来绘制更大的圆圈然后穿过它们?

这是解决特定问题的一种简单方法。我不建议将其上交(如果是作业),但它向您展示了基本原则。

import java.util.Scanner;
import javax.swing.JFrame;
import java.awt.*;
class PlotGraph extends JFrame{
public void paint(Graphics l){

l.drawLine(50, 300, 550, 300); //x axis
l.drawLine(300, 550, 300, 50); //y axis

int xmin, xmax, y, tmin, tmax;
int z = 0;
xmin =(-10);
xmax = 10;
int x_bet, y_bet;
while(xmin<=xmax){
    y = 300-(xmin*xmin);
    l.drawLine(xmin+300, y, xmin+300, y);
    if(z!=0)
    l.drawLine(xmin+300, y, xmin+300, z);
    z=y;
    xmin++;
}
}

public static void main(String [] args) {
PlotGraph graph = new PlotGraph();
graph.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
graph.setSize(600, 600);
graph.setVisible(true); 
graph.setTitle("PlotGraph");
}
}
于 2013-03-10T05:46:05.227 回答