circumcenters method

List<Point> circumcenters()

Returns all circumcenters.

Implementation

List<Point> circumcenters() {
  return List.generate(trianglesLength, circumcenter);
}