addPoints method

void addPoints(
  1. MutablePointCollection points
)

Add a new points to the end of the mutable point collection.

Parameters:

  • points — The new points to add.

Implementation

void addPoints(MutablePointCollection points) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_MutablePointCollection_addPoints(
        _handle, points._handle, errorHandler);
  });
}