예제 #1
0
파일: Triangle.java 프로젝트: jpollo/rcrss
 /** @return the triangle's circumcenter */
 public Pnt getCircumcenter() {
   if (circumcenter == null) circumcenter = Pnt.circumcenter(this.toArray(new Pnt[0]));
   return circumcenter;
 }