removeAll method

void removeAll()

Remove all points from the mutable point collection.

After calling this method the mutable point collection is empty.

Implementation

void removeAll() {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_MutablePointCollection_removeAll(
      _handle,
      errorHandler,
    );
  });
}