C# Class Sharplike.Noise.Abstract2DNoise

Serves to both provide a blueprint for two-dimensional noise generators and a jumping-off point for three- and four-dimensional noise generators.
Inheritance: Abstract1DNoise
Afficher le fichier Open project: eropple/sharplike

Protected Properties

Свойство Type Description
width System.Int32

Méthodes publiques

Méthode Description
GetNoiseValue ( Double x, Double y ) : Double

Accessor. Look up a non-integral position in the noise field and, if InterpolationMethod is set to anything other than InterpolationMethod.None, return the interpolated value (else return the nearest neighbor).

GetNoiseValue ( Int32 x, Int32 y ) : Double

Accessor. Look up an integral position in the noise field.

this ( Double x, Double y ) : Double

Accessor. Look up a non-integral position in the noise field and, if InterpolationMethod is set to anything other than InterpolationMethod.None, return the interpolated value (else return the nearest neighbor).

this ( Int32 x, Int32 y ) : Double

Accessor. Look up an integral position in the noise field.

Method Details

GetNoiseValue() public abstract méthode

Accessor. Look up a non-integral position in the noise field and, if InterpolationMethod is set to anything other than InterpolationMethod.None, return the interpolated value (else return the nearest neighbor).
public abstract GetNoiseValue ( Double x, Double y ) : Double
x Double The X-coordinate in the noise field.
y Double The Y-coordinate in the noise field.
Résultat Double

GetNoiseValue() public abstract méthode

Accessor. Look up an integral position in the noise field.
public abstract GetNoiseValue ( Int32 x, Int32 y ) : Double
x System.Int32 The X-coordinate in the noise field.
y System.Int32 The Y-coordinate in the noise field.
Résultat Double

this() public méthode

Accessor. Look up a non-integral position in the noise field and, if InterpolationMethod is set to anything other than InterpolationMethod.None, return the interpolated value (else return the nearest neighbor).
public this ( Double x, Double y ) : Double
x Double The X-coordinate in the noise field.
y Double The Y-coordinate in the noise field.
Résultat Double

this() public méthode

Accessor. Look up an integral position in the noise field.
public this ( Int32 x, Int32 y ) : Double
x System.Int32 The X-coordinate in the noise field.
y System.Int32 The Y-coordinate in the noise field.
Résultat Double

Property Details

width protected_oe property

protected Int32,System width
Résultat System.Int32