tags:

views:

33

answers:

1

In java, a Shape is described by a PathIterator which describes the different lines, curves, moveTos, etc... which compose the shape. Does android expose similar functionality?:

  1. A class which is a flexible collection of lines/curves/moveTos
  2. A method in that class, or a wrapper for that class, which can be used to retrieve and iterate the description.

Thanks

A: 

http://developer.android.com/intl/zh-TW/reference/android/graphics/Path.html

Konstantin Burov
this class does not provide any kind of iterator, or any other way to retrieve the individual sections?
ab11