-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add circles to beziers #2721
Add circles to beziers #2721
Conversation
Added circles to beziers
Could you provide an example to test this? |
@infdivzero @RobLoach this change implies a big performance cost for the function (2 triangles vs 36 triangles per point) and also a lot of overdraw, why draw first using rectangles and then overdraw the same line with circles? A resulting issue could be drawing bezier lines with transparency. The visual improvement is really good but, actually, it's not the right solution for the problem.
|
Forgot that detail! I'll close this now |
Fills in the gaps between line segments made by the draw bezier functions when thick > 1. Also makes the ends round