Reputation: 2472
I want to draw a circular sector. I saw here how to do a circle, which is pretty obvious. What is the best way to draw a circular sector?
Upvotes: 5
Views: 8243
Reputation: 13960
Unfortunately, there isn't a method to do what you want, but you can use drawArc
and drawLine
. Some info on how to compute the necessary coordinates can be found in this article.
Upvotes: 1