Exemplo n.º 1
0
 /** @return the triangle's circumcenter */
 public Pnt getCircumcenter() {
   if (circumcenter == null) circumcenter = Pnt.circumcenter(this.toArray(new Pnt[0]));
   return circumcenter;
 }