clear method

void clear()

Removes all points from the path.

Implementation

void clear() {
  _path.clear();
  _closed = null;
  _boundingBox = null;
}