Package org.jzy3d.colors
Interface IColorMappable
- All Known Implementing Classes:
ColorMapper
,GridLoader
,OrderingStrategyScoreColorMapper
public interface IColorMappable
ColorMappable interface.
This interface defines a set of methods that any colored object using a concrete
IColorMap
must provide.
- Author:
- Martin Pernollet
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getMax()
Retrieve the upper value boundary for aIColorMap
.double
getMin()
Retrieve the lower value boundary for aIColorMap
.void
setMax
(double value) Set the upper value boundary for aIColorMap
.void
setMin
(double value) Set the lower value boundary for aIColorMap
.
-
Method Details
-
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
-