triangleCount property

int get triangleCount

Implementation

int get triangleCount {
  var total = 0;
  for (final surface in surfaces) {
    total += surface.mesh.triangleCount;
  }
  return total;
}