Interface ScalingFunction

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getMax()
      Get maximum resulting value.
      double getMin()
      Get minimum resulting value.
      double getScaled​(double value)
      Transform a given value using the scaling function.
    • Method Detail

      • getScaled

        double getScaled​(double value)
        Transform a given value using the scaling function.
        Parameters:
        value - Original value
        Returns:
        Scaled value
      • getMin

        double getMin()
        Get minimum resulting value. May be Double.NaN or Double.NEGATIVE_INFINITY.
        Returns:
        Minimum resulting value.
      • getMax

        double getMax()
        Get maximum resulting value. May be Double.NaN or Double.POSITIVE_INFINITY.
        Returns:
        Maximum resulting value.