Java Graphics How to - Draw Cubic Curve CubicCurve2D.Float








Question

We would like to know how to draw Cubic Curve CubicCurve2D.Float.

Answer

//w ww  .  j  av a  2 s . c  om
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.CubicCurve2D;

public class MainClass extends Frame {
  public static void main(String[] args) {
    (new MainClass()).setVisible(true);
  }

  public MainClass() {
    super("Shape Sampler");
    setSize(400, 550);
  }

  public void paint(Graphics g) {
    Graphics2D g2d = (Graphics2D) g;

    CubicCurve2D cubcurve = new CubicCurve2D.Float(30, 400, 150, 400, 200, 500, 350, 450);
    g2d.draw(cubcurve);
  }
}

The code above generates the following result.