Uses of Interface
visad.LinearSet

Packages that use LinearSet
visad The core VisAD package, providing support for VisAD's Data & MathType hierarchy, as well as for VisAD Displays and remote collaboration. 
visad.data.visad.object   
 

Uses of LinearSet in visad
 

Classes in visad that implement LinearSet
 class Integer1DSet
          Integer1DSet represents a finite set of samples of R at an integer lattice based at the origin (i.e, 0, 1, 2, ..., length-1).
 class Integer2DSet
          Integer2DSet represents a finite set of samples of R^2 at an integer lattice based at the origin.
 class Integer3DSet
          Integer3DSet represents a finite set of samples of R^3 at an integer lattice based at the origin.
 class IntegerNDSet
          IntegerNDSet represents a finite set of samples of R^n at an integer lattice based at the origin.
 class Linear1DSet
          Linear1DSet represents a finite set of samples of R in an arithmetic progression.
 class Linear2DSet
          Linear2DSet represents a finite set of samples of R^2 in a cross product of two arithmetic progressions.
 class Linear3DSet
          Linear3DSet represents a finite set of samples of R^3 in a cross product of three arithmetic progressions.
 class LinearLatLonSet
          LinearLatLonSet represents a finite set of samples of (Latitude, Longitude) in a cross product of two arithmetic progressions.
 class LinearNDSet
          LinearNDSet represents a finite set of samples of R^Dimension in a cross product of arithmetic progressions.
 

Methods in visad that return LinearSet
static LinearSet LinearNDSet.create(MathType type, double[] firsts, double[] lasts, int[] lengths)
          General Factory method for creating the proper linear set (Linear1DSet, Linear2DSet, etc.).
static LinearSet LinearNDSet.create(MathType type, double[] firsts, double[] lasts, int[] lengths, CoordinateSystem coord_sys, Unit[] units, ErrorEstimate[] errors)
           
 

Uses of LinearSet in visad.data.visad.object
 

Methods in visad.data.visad.object with parameters of type LinearSet
static Integer1DSet[] BinaryIntegerSet.getComponents(LinearSet set)