nodeCount property

int get nodeCount

Implementation

int get nodeCount {
  int result = 0;
  for (var wayholder in wayholders) {
    result += wayholder.nodeCount();
  }
  return result;
}