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 Type
    Method
    Description
    double
    Retrieve the upper value boundary for a IColorMap.
    double
    Retrieve the lower value boundary for a IColorMap.
    void
    setMax(double value)
    Set the upper value boundary for a IColorMap.
    void
    setMin(double value)
    Set the lower value boundary for a IColorMap.
  • Method Details

    • getMin

      double getMin()
      Retrieve the lower value boundary for a IColorMap.
      Returns:
      the minimum Z value
    • getMax

      double getMax()
      Retrieve the upper value boundary for a IColorMap.
      Returns:
      the maximum Z value
    • setMin

      void setMin(double value)
      Set the lower value boundary for a IColorMap.
      Parameters:
      value - the minimum Z value
    • setMax

      void setMax(double value)
      Set the upper value boundary for a IColorMap.
      Parameters:
      value - the maximum Z value