update method

void update()

Calculates or recalculates the Delaunay triangulation.

Calls initialize and processAllPoints. This can be called to perform the initial calculation, or to recalculate the triangulation if the contents of coords is modified.

Implementation

void update() {
  initialize();
  processAllPoints();
}