Curve lines?

Is there curved line method in graphics like a bezier or spline without writing my own?

https://docs.juce.com/master/classPath.html#a9c8915eda7d7962e68d89b38ef9798eb

1 Like
Path path;
Path.cubicTo( ... );
g.strokePath( path, PathStrokeType(2) );
1 Like

Ah cool forgot all about Path class

Cheers guys.