Enum NoiseQualitySimplex

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

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

    • STANDARD

      public static final NoiseQualitySimplex STANDARD
      Generates simplex-style noise using the four nearst lattice vertices and smaller kernels. The appearance might be more bubbly, and there might be more straight line segments in the ridged noise. However, Ridged noise using this setting may still be more favorable than the Perlin / non-Simplex Ridged noise.
    • SMOOTH

      public static final NoiseQualitySimplex SMOOTH
      Generates simplex-style using the eight nearest lattice vertices and larger kernels. The appearance will be smoother, and there will be fewer to no straight line segments in the ridged noise.
  • Method Details

    • values

      public static NoiseQualitySimplex[] 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 NoiseQualitySimplex 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
    • kernelSquaredRadius

      public double kernelSquaredRadius()