|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.plot.ColorMap
jas.plot.ColorRangeMap
public class ColorRangeMap
It builds automatically a color map using a variable range.
There are three types of range:
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
ColorRangeMap(int gradients,
double minValue,
double maxValue,
java.awt.Color color)
Create a color range map from black to given color. |
|
ColorRangeMap(int gradients,
double minValue,
double maxValue,
java.awt.Color bottomColor,
java.awt.Color topColor)
Create a color range map from given color to given color. |
|
ColorRangeMap(int gradients,
double minValue,
double midValue,
double maxValue,
java.awt.Color bottomColor,
java.awt.Color middleColor,
java.awt.Color topColor)
Create a color range map from lower given color to middle given color and from middle to the highest given one. |
Method Summary | |
---|---|
int |
getColorIndex(double value)
Return the color index. |
int |
getColorIndex(int value)
Return the color index. |
Methods inherited from class jas.plot.ColorMap |
---|
addColor, addColor, getColor, getColorComponents, getMappedColor, toArray |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ColorRangeMap(int gradients, double minValue, double maxValue, java.awt.Color color)
gradients
- The number of color gradients that are added to the map.minValue
- The lower bound of the range.maxValue
- The upper bound of the range.color
- The highest color. It will correspond to maxValue.public ColorRangeMap(int gradients, double minValue, double maxValue, java.awt.Color bottomColor, java.awt.Color topColor)
gradients
- The number of color gradients that are added to the map.minValue
- The lower bound of the range.maxValue
- The upper bound of the range.bottomColor
- The lowest color. It will correspond to minValue.topColor
- The highest color. It will correspond to maxValue.public ColorRangeMap(int gradients, double minValue, double midValue, double maxValue, java.awt.Color bottomColor, java.awt.Color middleColor, java.awt.Color topColor)
gradients
- The number of color gradients that are added to the map.minValue
- The lower bound of the range.midValue
- The value at which color changes the range.maxValue
- The upper bound of the range.bottomColor
- The lowest color. It will correspond to minValue.middleColor
- The middle color. It will correspond to midValue.topColor
- The highest color. It will correspond to maxValue.Method Detail |
---|
public int getColorIndex(double value)
getColorIndex
in interface IColorMap
getColorIndex
in class ColorMap
value
- The value to be mapped. If it is outside the range bounds,
the method returns its nearest bound.
public int getColorIndex(int value)
getColorIndex
in interface IColorMap
getColorIndex
in class ColorMap
value
- The value to be mapped. If it is outside the range bounds,
the method returns its nearest bound.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |