Reputation: 79
I noticed when you add graphics in kivy, it looks very rough. How can I draw an ellipse with smoothline?
canvas:
Color:
rgba: 0, 0, 0, 1
Ellipse:
size: (372, 372)
pos: (root.width / 2 - 186), (root.height / 2 - 186)
segments: 1
Any type of help will be appreciated. Thank you
Upvotes: 0
Views: 964
Reputation: 29460
The Ellipse drawing instruction has no SmoothLine equivalent, although it would be possible to create one (and such a contribution would probably be welcome).
Possible workarounds for your antialiasing issue might be:
Upvotes: 1