Enum NoiseQuality

java.lang.Object
java.lang.Enum<NoiseQuality>
org.spongepowered.noise.NoiseQuality
All Implemented Interfaces:
Serializable, Comparable<NoiseQuality>

public enum NoiseQuality extends Enum<NoiseQuality>
  • Enum Constant Details

    • FAST

      public static final NoiseQuality FAST
      Generates coherent noise quickly. When a coherent-noise function with this quality setting is used to generate a bump-map image, there are noticeable "creasing" artifacts in the resulting image. This is because the derivative of that function is discontinuous at integer boundaries.
    • STANDARD

      public static final NoiseQuality STANDARD
      Generates standard-quality coherent noise. When a coherent-noise function with this quality setting is used to generate a bump-map image, there are some minor "creasing" artifacts in the resulting image. This is because the second derivative of that function is discontinuous at integer boundaries.
    • BEST

      public static final NoiseQuality BEST
      Generates the best-quality coherent noise. When a coherent-noise function with this quality setting is used to generate a bump-map image, there are no "creasing" artifacts in the resulting image. This is because the first and second derivatives of that function are continuous at integer boundaries.
  • Method Details

    • values

      public static NoiseQuality[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static NoiseQuality valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null