Java Graphics How to - Create Path from Lines and Curves








Question

We would like to know how to create Path from Lines and Curves.

Answer

 //ww w  .  jav  a2 s. c o  m

import java.awt.geom.GeneralPath;

public class Main {
  public static void main(String[] args) {
    GeneralPath shape = new GeneralPath();
    shape.moveTo(1, 1);
    shape.lineTo(2, 2);
    shape.quadTo(3, 3, 4, 4);
    shape.curveTo(5, 5, 6, 6, 7, 7);
    shape.closePath();
    
    System.out.println("done");
  }
}

The code above generates the following result.