Interface RealARGBColorConverter<R extends RealType<?>>
- Type Parameters:
R- source type
- All Superinterfaces:
ColorConverter, Converter<R,ARGBType>, LinearRange
- All Known Implementing Classes:
RealARGBColorConverterFactory.Imp
public interface RealARGBColorConverter<R extends RealType<?>>
extends ColorConverter, Converter<R,ARGBType>
A converter
RealType to ARGBType with configurable linear range and color.
Input values are passed through a linear function that maps the configured
linear range to [0..255], the resulting value is
then multiplied with R, G, B components of the configured color which are finally individually clamped to
[0..255].
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic <R extends RealType<?>>
RealARGBColorConverter<R> create(R type, double min, double max) Methods inherited from interface ColorConverter
getColor, setColor, supportsColorMethods inherited from interface LinearRange
getMax, getMin, setMax, setMin
-
Method Details
-
create
-