Uses of Class
edu.neu.ccs.gui.Interval

Packages that use Interval
edu.neu.ccs.gui Provides classes and interfaces for designing and implementing graphical interfaces and for the creation of paintable and mutatable objects.. 
 

Uses of Interval in edu.neu.ccs.gui
 

Fields in edu.neu.ccs.gui declared as Interval
protected  Interval PlotTool.worldXRange
          The x-interval in world coordinates.
protected  Interval PlotTool.worldYRange
          The y-interval in world coordinates.
protected  Interval PlotTool.imageXRange
          The x-interval in image coordinates.
protected  Interval PlotTool.imageYRange
          The y-interval in image coordinates.
 

Methods in edu.neu.ccs.gui with parameters of type Interval
 void Interval.setInterval(Interval other)
          Sets the endpoints for this interval to the endpoints of the given interval.
static Point2D[] DataTables2D.makeTable(Function.OneArg f, Interval limits, int divisions)
          Make a Point2D array of pairs (x,f(x)) where x is sampled on the given interval divided into the given number of divisions.
static Point2D[][] DataTables2D.makeTable(Function.OneArg[] f, Interval limits, int divisions)
          Make a Point2D array of arrays of pairs (x,f[i](x)) where i ranges over the valid indices for the function array f and where x is sampled on the given interval divided into the number of divisions.