Interface ColorSchemeTransform
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ColorSchemeTransform
Defines a transformation on a color scheme.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RadianceColorScheme
transform(RadianceColorScheme scheme)
Transforms the specified color scheme.
-
-
-
Method Detail
-
transform
RadianceColorScheme transform(RadianceColorScheme scheme)
Transforms the specified color scheme.- Parameters:
scheme
- The original color scheme to transform.- Returns:
- The transformed color scheme.
-
-