2020-01-11 18:00:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using CubicNoise.Contracts;
|
|
|
|
|
|
|
|
|
|
namespace CubicNoise.Noisers
|
|
|
|
|
{
|
2020-01-11 23:32:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This class contains all known cubic noise's parameters.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
public class CubicNoiseIntParameters : IParameterName
|
|
|
|
|
{
|
2020-01-11 23:32:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cubic noise's octave parameter.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
public static readonly IParameterName OCTAVE = new CubicNoiseIntParameters();
|
2020-01-11 23:32:10 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cubic noise's period x parameter.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
public static readonly IParameterName PERIOD_X = new CubicNoiseIntParameters();
|
2020-01-11 23:32:10 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cubic noise's period y parameter.
|
|
|
|
|
/// </summary>
|
2020-01-11 18:00:46 +00:00
|
|
|
|
public static readonly IParameterName PERIOD_Y = new CubicNoiseIntParameters();
|
|
|
|
|
|
|
|
|
|
private CubicNoiseIntParameters()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|