Uses of Interface
org.strbio.util.ColorScale

Packages that use ColorScale
org.strbio.mol.lib.pred2ary These classes represent conceptual objects used in the Pred2ary program, which are probably not very useful for other purposes. 
org.strbio.util These classes perform general purpose utility functions. 
org.strbio.util.graph These classes perform utility functions related to 2D and 3D graphics. 
 

Uses of ColorScale in org.strbio.mol.lib.pred2ary
 

Fields in org.strbio.mol.lib.pred2ary declared as ColorScale
protected  ColorScale ProfileDisplayArea.blueScale
           
protected  ColorScale ProfileDisplayArea.greenScale
           
protected  ColorScale ProfileDisplayArea.redScale
          Color scales to draw things in.
 

Uses of ColorScale in org.strbio.util
 

Classes in org.strbio.util that implement ColorScale
static class ColorScale.BlackScale
          A scale going from white to black.
static class ColorScale.BlendScale
          A scale blending one color into another.
static class ColorScale.BlueScale
          A scale going from black to blue.
static class ColorScale.GreenScale
          A scale going from black to green.
static class ColorScale.RainbowScale
          A ROYGBIV scale going from R(low) to V(high)
static class ColorScale.RainbowScale2
          A ROYGBIV scale going from V(low) to R(high)
static class ColorScale.RedScale
          A scale going from black to red.
static class ColorScale.WhiteScale
          A scale going from black to white.
 

Methods in org.strbio.util that return ColorScale
 ColorScale DensityPlot.getColorScale()
          Return the color scale being used.
 ColorScale BarLegend.getColorScale()
          Return the color scale being used.
 

Methods in org.strbio.util with parameters of type ColorScale
 void DensityPlot.setColorScale(ColorScale x)
          Set the color scale to use.
 void BarLegend.setColorScale(ColorScale x)
          Set the color scale to use.
 

Constructors in org.strbio.util with parameters of type ColorScale
BarLegend(double a, double b, ColorScale c, java.lang.String f)
          Initialize new legend.
DensityPlot(DMatrix x, ColorScale c)
          A density plot needs a matrix and a color scale to draw it with.
 

Uses of ColorScale in org.strbio.util.graph
 

Methods in org.strbio.util.graph that return ColorScale
 ColorScale PointColorPlot.getColorScale()
          Return the color scale being used.
 ColorScale ColorScaleLegend.getColorScale()
          Return the color scale being used.
 

Methods in org.strbio.util.graph with parameters of type ColorScale
 void PointColorPlot.setColorScale(ColorScale x)
          Set the color scale to use.
 void ColorScaleLegend.setColorScale(ColorScale x)
          Set the color scale to use.
 

Constructors in org.strbio.util.graph with parameters of type ColorScale
ColorScaleLegend(double a, double b, ColorScale c, java.awt.Font f, java.awt.FontMetrics fmet, java.lang.String l, java.lang.String fmt)
          Initialize new legend.
PointColorPlot(DVectorSet x, ColorScale cs)
          Start with just a set of points to plot.