2020-01-11 18:00:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace CubicNoise
|
|
|
|
|
{
|
2020-01-11 23:32:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// All implemented noise generators.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
public enum NoiseTypes
|
|
|
|
|
{
|
2020-01-11 23:32:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The UNKNOWN generator is a placeholder for empty values. You should not use it in production. It generates random numbers on every call.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
UNKNOWN = 0,
|
2020-01-11 23:32:10 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is the cubic noise generator by Job Talle, cf. https://jobtalle.com/cubic_noise.html and https://github.com/jobtalle.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
CUBIC_NOISE = 1_000,
|
|
|
|
|
}
|
|
|
|
|
}
|