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 FadeFunction
Interface marking the implementing class as a fade function for noise generation. See here for more information
  • Field Details

  • Method Details

    • fade

      double fade(double t)
      Specifies a value to fade, this is used to remove interpolation artefacts.
      Parameters:
      t - value (position) in the unit cube to fade.
      Returns:
      the faded value at t.