Esempio n. 1
0
 /**
  * return the z-coordinate of the barycenter
  *
  * @return z
  */
 public float getZ() {
   if (changed) {
     compute();
   }
   return radiusOfGroup.getZ();
 }
Esempio n. 2
0
 /** @return return the averageRadius. */
 public float getAverageRadius() {
   if (changed) {
     compute();
   }
   return radiusOfGroup.getAverageRadius();
 }