Esempio n. 1
0
 public int computeCost() {
   int sum = 0;
   for (WeightedWaypoint wp : this) {
     sum += wp.computeCost();
   }
   return sum;
 }