Versions Compared

Key

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

...

No Format
this.aggregate(index,value);

Get results

Inside your vertex, you can get the results of each aggregator by using this method:

No Format

this.getAggregatedValue(0);

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

Get results

Inside your vertex, you can get the results of each aggregator by using this method:

No Format

this.getAggregatedValue(index);

Write your own aggregators

...