Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to aggregate values , from your vertexvertices, use:

No Format
this.aggregate(index,value);

This method is called from inside each vertex. Though it's not mandatory all vertices to make use of this method.

The index parameter of this method is a number that is equivalent to the order of the registered aggregator. (The first registered aggregator has index 0, second has index 1 etc.)

...