Interface NoiseResult

All Known Implementing Classes:
WorleyNoiseResult

public interface NoiseResult
Interface that denotes a noise result, which is used to wrap the results of an entire noise generation step. Useful when there are multiple result types, i.e. not only a double but e.g. a vector.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
     
    void
    setValue(double value)
    Sets the value inside the noise result.
  • Method Details

    • getValue

      double getValue()
      Returns:
      double denoting the pure mathematical value of the noise result.
    • setValue

      void setValue(double value)
      Sets the value inside the noise result. Used for applying modifiers.
      Parameters:
      value - new output for the pure mathematical valueof the noise result.