|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Range2D | |
---|---|
gov.noaa.pmel.sgt | Core classes for the Scientific Graphics Toolkit. |
gov.noaa.pmel.sgt.beans | Classes and interfaces that make up SGT Beans. |
gov.noaa.pmel.sgt.contour | Contour and polygon fill support. |
gov.noaa.pmel.sgt.demo | JApplets and applications that demonstrate the use of
sgt. |
gov.noaa.pmel.sgt.dm | Classes and interfaces that define the sgt datamodel. |
gov.noaa.pmel.sgt.swing | Components that use the package javax.swing . |
gov.noaa.pmel.sgt.swing.prop | Property dialogs for sgt components using
javax.swing . |
gov.noaa.pmel.swing | Classes and beans developed from the javax.swing package. |
gov.noaa.pmel.util | Contains date and time facilities and miscellaneous utility classes. |
Uses of Range2D in gov.noaa.pmel.sgt |
---|
Fields in gov.noaa.pmel.sgt declared as Range2D | |
---|---|
protected Range2D |
Axis.pRange_
|
protected Range2D |
SpaceAxis.uRange_
|
protected Range2D |
Ruler.uRange_
|
protected Range2D |
CartesianGraph.xClipRange_
|
protected Range2D |
CartesianGraph.yClipRange_
|
Methods in gov.noaa.pmel.sgt that return Range2D | |
---|---|
static Range2D |
Graph.computeRange(double min,
double max,
int num)
Compute a "nice" range from the minimum, maximum, and number of intervals. |
static Range2D |
Graph.computeRange(Range2D range,
int num)
Compute a "nice" range from a range and number of intervals. |
Range2D |
TransformColorMap.getRange()
Get the current user range for the Transform s. |
Range2D |
IndexedColorMap.getRange()
Get the current user range for the Transform . |
Range2D |
ContourLevels.getRange()
Get the range of levels |
abstract Range2D |
ColorMap.getRange()
Get the current user range for the Transform s or
ContourLevel . |
Range2D |
CLTransformColorMap.getRange()
Get the current user range for the Transform s. |
Range2D |
CLIndexedColorMap.getRange()
Get the current user range for the Transform . |
Range2D |
Transform.getRangeP()
Get the physical coordinate range. |
Range2D |
TableLookupTransform.getRangeP()
|
Range2D |
AxisTransform.getRangeP()
Get the physical coordinate range. |
Range2D |
Axis.getRangeP()
Get the physical range. |
Range2D |
Transform.getRangeU()
Get the user coordinate range for double values. |
Range2D |
TableLookupTransform.getRangeU()
|
Range2D |
SpaceAxis.getRangeU()
Get the user range. |
Range2D |
Ruler.getRangeU()
|
Range2D |
AxisTransform.getRangeU()
Get the user coordinate range for double values. |
Methods in gov.noaa.pmel.sgt with parameters of type Range2D | |
---|---|
static Range2D |
Graph.computeRange(Range2D range,
int num)
Compute a "nice" range from a range and number of intervals. |
static ContourLevels |
ContourLevels.getDefault(Range2D range)
Construct a default ContourLevels object from a
Range2D . |
void |
TransformColorMap.setRange(Range2D range)
Set the user range for all the Transforms. |
void |
TransformAccess.setRange(Range2D range)
|
void |
IndexedColorMap.setRange(Range2D range)
Set the user range for the Transform. |
void |
Transform.setRangeP(Range2D prange)
Set physical coordinate range. |
void |
TableLookupTransform.setRangeP(Range2D pr)
|
void |
AxisTransform.setRangeP(Range2D prange)
Set physical coordinate range. |
void |
Axis.setRangeP(Range2D pr)
Set the physical range. |
void |
Transform.setRangeU(Range2D urange)
Set the user coordinate range for double values. |
void |
TableLookupTransform.setRangeU(Range2D ur)
|
void |
SpaceAxis.setRangeU(Range2D ur)
Set the user range to draw the axis. |
void |
Ruler.setRangeU(Range2D range)
Change the user unit range of Ruler |
void |
AxisTransform.setRangeU(Range2D urange)
Set the user coordinate range for Range2D values. |
Constructors in gov.noaa.pmel.sgt with parameters of type Range2D | |
---|---|
AxisTransform(Range2D pr,
Range2D ur)
AxisTransform space constructor. |
|
AxisTransform(Range2D pr,
SoTRange str)
AxisTransform SoT constructor. |
|
AxisTransform(Range2D pr,
TimeRange tr)
AxisTransform time constructor. |
|
LinearTransform(Range2D pr,
Range2D ur)
LinearTransform constructor. |
|
LinearTransform(Range2D pr,
SoTRange str)
LinearTransform constructor. |
|
LinearTransform(Range2D pr,
TimeRange tr)
LinearTransform constructor. |
|
LogTransform(Range2D pr,
Range2D ur)
|
|
LogTransform(Range2D pr,
SoTRange str)
|
|
LogTransform(Range2D pr,
TimeRange tr)
|
|
SineTransform(Range2D pr,
Range2D ur)
|
|
SineTransform(Range2D pr,
SoTRange str)
|
|
SineTransform(Range2D pr,
TimeRange tr)
|
|
TableLookupTransform(Range2D pr,
Range2D ur)
|
Uses of Range2D in gov.noaa.pmel.sgt.beans |
---|
Methods in gov.noaa.pmel.sgt.beans that return Range2D | |
---|---|
Range2D |
AxisHolder.getRangeP()
Get range of axis (long direction) in physical coordinates. |
Uses of Range2D in gov.noaa.pmel.sgt.contour |
---|
Constructors in gov.noaa.pmel.sgt.contour with parameters of type Range2D | |
---|---|
Contour(CartesianGraph cg,
SGTGrid grid,
Range2D range)
Construct a Contour object using a range to define
the ContourLevels . |
Uses of Range2D in gov.noaa.pmel.sgt.demo |
---|
Constructors in gov.noaa.pmel.sgt.demo with parameters of type Range2D | |
---|---|
TestData(int dir,
Range2D range,
int type,
float amp,
float off,
float per)
Create one-dimensional spatial test data. |
|
TestData(int dir,
Range2D range1,
Range2D range2,
int type,
float amp,
float off,
float per)
Create two-dimensional spatial test data. |
|
TestData(int dir,
Range2D range,
TimeRange trange,
float delta,
int type,
float amp,
float off,
float per)
Create time series test grid data. |
|
TestData(Range2D xrnge,
Range2D yrnge,
int num)
Create a Collection of points. |
Uses of Range2D in gov.noaa.pmel.sgt.dm |
---|
Methods in gov.noaa.pmel.sgt.dm that return Range2D | |
---|---|
Range2D |
ThreeDGrid.getValRange()
|
Range2D |
SGT3DGrid.getValRange()
Get the range of measured values on this 3D grid. |
Range2D |
SimpleTuple.getZRange()
|
Range2D |
SimpleGrid.getZRange()
|
Range2D |
SGTTuple.getZRange()
|
Range2D |
SGTGrid.getZRange()
Get the range of Z values. |
Uses of Range2D in gov.noaa.pmel.sgt.swing |
---|
Methods in gov.noaa.pmel.sgt.swing that return Range2D | |
---|---|
Range2D |
JGraphicLayout.findRange(SGTGrid data,
GridAttribute attr,
int dir)
Find the range of the SGTGrid object in the
specified direction. |
Range2D |
JGraphicLayout.findRange(SGTLine data,
int dir)
Find the range of the SGTLine object in the specific
direction. |
Uses of Range2D in gov.noaa.pmel.sgt.swing.prop |
---|
Methods in gov.noaa.pmel.sgt.swing.prop that return Range2D | |
---|---|
Range2D |
NewLevelsDialog.getRange()
Return the computed or entered range. |
Uses of Range2D in gov.noaa.pmel.swing |
---|
Methods in gov.noaa.pmel.swing that return Range2D | |
---|---|
Range2D |
JSlider2Double.getRange()
Get the slider range. |
Methods in gov.noaa.pmel.swing with parameters of type Range2D | |
---|---|
void |
JSlider2Double.setRange(Range2D range)
Set the range for the slider. |
Uses of Range2D in gov.noaa.pmel.util |
---|
Methods in gov.noaa.pmel.util that return Range2D | |
---|---|
Range2D |
Range2D.copy()
Create a copy of Range2D object. |
Range2D |
LinearTransform.getRangeP()
Get the physical coordinate range. |
Range2D |
ExponentialTransformUp.getRangeP()
Get the physical coordinate range. |
Range2D |
ExponentialTransformDown.getRangeP()
Get the physical coordinate range. |
Range2D |
LinearTransform.getRangeU()
Get the user coordinate range for double values. |
Range2D |
ExponentialTransformUp.getRangeU()
Get the user coordinate range for double values. |
Range2D |
ExponentialTransformDown.getRangeU()
Get the user coordinate range for double values. |
Range2D |
Domain.getXRange()
Get the x range. |
Range2D |
Domain.getYRange()
Get the y range. |
Methods in gov.noaa.pmel.util with parameters of type Range2D | |
---|---|
void |
Range2D.add(Range2D range)
Adds the Range2D object to this
Range2D . |
boolean |
Range2D.equals(Range2D r)
Test for equality. |
void |
LinearTransform.setRangeP(Range2D prange)
Set physical coordinate range. |
void |
ExponentialTransformUp.setRangeP(Range2D prange)
Set physical coordinate range. |
void |
ExponentialTransformDown.setRangeP(Range2D prange)
Set physical coordinate range. |
void |
LinearTransform.setRangeU(Range2D urange)
Set the user coordinate range for double values. |
void |
ExponentialTransformUp.setRangeU(Range2D urange)
Set the user coordinate range for double values. |
void |
ExponentialTransformDown.setRangeU(Range2D urange)
Set the user coordinate range for double values. |
void |
Domain.setXRange(Range2D xRange)
Set the x range. |
void |
Domain.setYRange(Range2D yRange)
Set the y range |
Constructors in gov.noaa.pmel.util with parameters of type Range2D | |
---|---|
Domain(Range2D xRange,
Range2D yRange)
|
|
Domain(Range2D xRange,
Range2D yRange,
boolean xRev,
boolean yRev)
|
|
Domain(Range2D xRange,
TimeRange tRange)
|
|
Domain(Range2D xRange,
TimeRange tRange,
boolean xRev,
boolean yRev)
|
|
Domain(TimeRange tRange,
Range2D yRange)
|
|
Domain(TimeRange tRange,
Range2D yRange,
boolean xRev,
boolean yRev)
|
|
ExponentialTransformDown(Range2D prange,
Range2D urange)
|
|
ExponentialTransformUp(Range2D prange,
Range2D urange)
|
|
LinearTransform(Range2D prange,
Range2D urange)
|
|
SoTRange.Double(Range2D range)
Construct a SoTRange from a Range2D . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |