I am trying to draw curved lines in Java. A simple Bezier curve with start (X, Y), end (X, Y) and the amount of the curve will be enough.
I cannot find a way to do this in Swing. If it's not in Swing, is there some simple math I can use to do this? And how would I implement it in Swing?
Edit: I know how to draw shapes and lines by overriding the drawing method (Graphics g).
source share