예제 #1
0
파일: Group.java 프로젝트: michael-k/ccvisu
 /**
  * return the z-coordinate of the barycenter
  *
  * @return z
  */
 public float getZ() {
   if (changed) {
     compute();
   }
   return radiusOfGroup.getZ();
 }
예제 #2
0
파일: Group.java 프로젝트: michael-k/ccvisu
 /** @return return the averageRadius. */
 public float getAverageRadius() {
   if (changed) {
     compute();
   }
   return radiusOfGroup.getAverageRadius();
 }