Esempio n. 1
0
 /**
  * Get the maximum value in X
  *
  * @return Maximal value
  */
 public double getMax() {
   double[] d = proxy.getLimits();
   return d[1];
 }
Esempio n. 2
0
 /**
  * Get the minimum value in X
  *
  * @return min Minimum value
  */
 public double getMin() {
   double[] d = proxy.getLimits();
   return d[0];
 }