Package org.jzy3d.colors
Interface IColorMappable
-
- All Known Implementing Classes:
ColorMapper,GridLoader,OrderingStrategyScoreColorMapper
public interface IColorMappableColorMappable interface.This interface defines a set of methods that any colored object using a concrete
IColorMapmust provide.- Author:
- Martin Pernollet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetMax()Retrieve the upper value boundary for aIColorMap.doublegetMin()Retrieve the lower value boundary for aIColorMap.voidsetMax(double value)Set the upper value boundary for aIColorMap.voidsetMin(double value)Set the lower value boundary for aIColorMap.
-
-
-
Method Detail
-
getMin
double getMin()
Retrieve the lower value boundary for aIColorMap.- Returns:
- the minimum Z value
-
getMax
double getMax()
Retrieve the upper value boundary for aIColorMap.- Returns:
- the maximum Z value
-
setMin
void setMin(double value)
Set the lower value boundary for aIColorMap.- Parameters:
value- the minimum Z value
-
setMax
void setMax(double value)
Set the upper value boundary for aIColorMap.- Parameters:
value- the maximum Z value
-
-