如何使用java awt.Graphics2D绘制锥形轮廓

时间:2016-08-12 22:19:14

标签: java awt bezier

所以我试图绘制一条具有锥形轮廓的曲线:y =

y - profile

由于我正在使用awt.Graphics2D,因此我只能绘制shapes

绘制曲线的一种方法是绘制曲线,使用B'ezier曲线。有没有办法转换这个或者我不熟悉的技巧?

1 个答案:

答案 0 :(得分:1)

绘制曲线的一个选项是逐点:

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class Curve extends JPanel {

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);

        Graphics2D g2d = (Graphics2D) g;

        g2d.setColor(Color.RED);

        for (int x = 1; x <= 100; x++) {

            int y = getY(x);
            //2g does not support drawing a point so you draw a line 
            g2d.drawLine(x, y, x, y);
        }
    }

    /**
     *@param x
     *@return
     */
    private int getY(int x) {
        //change to the function you want 
        return  50+ (100/(1+ (3* x)));
    }

    public static void main(String[] args) {

        Curve points = new Curve();
        JFrame frame = new JFrame("Curve");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(points);
        frame.setSize(350, 300);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);

    }
}