NoiseEngine/CubicNoise/Noisers/CubicNoiseEngine.cs

30 lines
723 B
C#
Raw Normal View History

2020-01-11 18:00:46 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using CubicNoise.Contracts;
namespace CubicNoise.Noisers
{
public sealed class CubicNoiseEngine : INoiseEngine
{
private Dictionary<IParameterName, int> intParameters;
private int seed;
public CubicNoiseEngine(int seed, Dictionary<IParameterName, int> intParameters)
{
this.intParameters = intParameters;
this.seed = seed;
}
public float Get(float x)
{
throw new NotImplementedException();
}
public float Get(float x, float y)
{
throw new NotImplementedException();
}
}
}