Is there anyway to iterate a Path in android? To retrieve the individual "moveTo", "curveTo", "lineTo", etc., commands?
I need to be able to generically create shapes to be drawn to a canvas. The Path class does this well. But, I also need to be able to retrieve the individual commands used to create these shapes, so I can persist the commands. In java, I can do this with a PathIterator, but I don't see any equivalent in android. Is there one which I am missing?
Thank You