Package | Description |
---|---|
gov.nasa.worldwindx.examples.analytics |
Modifier and Type | Field and Description |
---|---|
protected static AnalyticSurface.GridPointAttributes |
AnalyticSurface.DEFAULT_GRID_POINT_ATTRIBUTES |
Modifier and Type | Field and Description |
---|---|
protected java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> |
AnalyticSurface.values |
Modifier and Type | Method and Description |
---|---|
static AnalyticSurface.GridPointAttributes |
AnalyticSurface.createColorGradientAttributes(double value,
double minValue,
double maxValue,
double minHue,
double maxHue)
Returns a new instance of
AnalyticSurface.GridPointAttributes with a Color computed from the specified value and value
range. |
static AnalyticSurface.GridPointAttributes |
AnalyticSurface.createGridPointAttributes(double value,
java.awt.Color color)
Returns a new instance of
AnalyticSurface.GridPointAttributes with the specified value and color. |
Modifier and Type | Method and Description |
---|---|
static java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> |
AnalyticSurface.createColorGradientValues(BufferWrapper values,
double missingDataSignal,
double minValue,
double maxValue,
double minHue,
double maxHue)
Returns a new iterable populated with
AnalyticSurface.GridPointAttributes computed by invoking AnalyticSurface.createColorGradientAttributes(double, double, double, double, double) for each double value in the speicfied
BufferWrapper . |
static java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> |
AnalyticSurface.createDefaultValues(int count)
Returns a new iterable populated with the default
AnalyticSurface.GridPointAttributes . |
static java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> |
AnalyticSurfaceDemo.createMixedColorGradientGridValues(double a,
BufferWrapper firstBuffer,
BufferWrapper secondBuffer,
double minValue,
double maxValue,
double minHue,
double maxHue) |
java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> |
AnalyticSurface.getValues()
Returns the surface's iterable of
AnalyticSurface.GridPointAttributes . |
Modifier and Type | Method and Description |
---|---|
protected void |
AnalyticSurface.updateNextSurfacePoint(DrawContext dc,
Angle lat,
Angle lon,
AnalyticSurface.GridPointAttributes attr,
AnalyticSurface.RenderInfo outRenderInfo) |
Modifier and Type | Method and Description |
---|---|
static double[] |
AnalyticSurface.computeExtremeValues(java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> iterable)
Returns the minimum and maximum values in the specified iterable of
AnalyticSurface.GridPointAttributes . |
static double[] |
AnalyticSurface.computeExtremeValues(java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> iterable,
double missingDataSignal)
Returns the minimum and maximum values in the specified iterable of
AnalyticSurface.GridPointAttributes . |
void |
AnalyticSurface.setValues(java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> iterable)
Sets this surface's iterable of
AnalyticSurface.GridPointAttributes . |
Constructor and Description |
---|
AnalyticSurface(Sector sector,
double altitude,
int width,
int height,
java.lang.Iterable<? extends AnalyticSurface.GridPointAttributes> iterable)
Constructs a new AnalyticSurface with the specified
Sector , base altitude in meters, grid dimensions, and
iterable of GridPointAttributes. |