Path.reset vs Path.rewind

Gautam picture Gautam · Jul 16, 2012 · Viewed 7.8k times · Source

In android what is the difference between path.reset() and path.rewind() ?

The docs say that

public void reset ()

Clear any lines and curves from the path, making it empty. This does NOT change the fill-type setting.

public void rewind ()

Rewinds the path: clears any lines and curves from the path but keeps the internal data structure for faster reuse.

but what does that really mean ?

when should either one be used ?

Answer

throrin19 picture throrin19 · Jul 16, 2012

Path.reset => Your Path is reseter. Returns to create one: new Path()

Path.rewind => Just empty the contents of the Path, Returns to make .clear() from a list