Package fr.rodofire.ewc.util
Enum Class FastNoiseLite.NoiseType
- All Implemented Interfaces:
Serializable,Comparable<FastNoiseLite.NoiseType>,Constable
- Enclosing class:
FastNoiseLite
Represents different types of noise functions used in noise generation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCellular noise, also known as Worley noise.OpenSimplex2 noise, a variation of the OpenSimplex noise algorithm.OpenSimplex2S noise, a skewed variation of OpenSimplex2.Perlin noise, a classic gradient noise algorithm.Basic value noise.Value noise using cubic interpolation for smoothing. -
Method Summary
Modifier and TypeMethodDescriptionstatic FastNoiseLite.NoiseTypeReturns the enum constant of this class with the specified name.static FastNoiseLite.NoiseType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OpenSimplex2
OpenSimplex2 noise, a variation of the OpenSimplex noise algorithm. -
OpenSimplex2S
OpenSimplex2S noise, a skewed variation of OpenSimplex2. -
Cellular
Cellular noise, also known as Worley noise. -
Perlin
Perlin noise, a classic gradient noise algorithm. -
ValueCubic
Value noise using cubic interpolation for smoothing. -
Value
Basic value noise.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-