Пример #1
0
 /**
  * Set the curve
  *
  * @param curve the curve coordinates
  * @param curveTimes the curve times
  * @throws RemoteException On badness
  * @throws VisADException On badness
  */
 public void setCurve(float[][] curve, List curveTimes) throws VisADException, RemoteException {
   this.curve = curve;
   this.curveTimes = curveTimes;
   FieldImpl front = makeFront(curve);
   if (front != null) {
     setData(Util.makeTimeRangeField(front, curveTimes));
   }
 }