Hello, how do I draw a curved triangle as a part o...
# random
n
Hello, how do I draw a curved triangle as a part of the arc? I am already using
DashPathEffect
and want to use
StampedPathEffect
as well but as far as I see, arc doesn’t accept multiple paths. How do I draw this triangle then do you know?
j
You could draw two arcs on top of each other.
n
I’ll have multiple arcs and only one arc can have a triangle at a time
j
Can I interest you in
ComposePathEffect
- for when you want to compose path effects?
r
There might be a better way, but you can intersect a circle and a triangle very easily to have the desired effect.
n
Thanks people for great ideas! Will compose them 🙂