Struct NoisePoint
Represents a point in a noise map with coordinates and a noise value.
Inherited Members
Namespace: Genesis.Math
Assembly: Genesis.dll
Syntax
public struct NoisePoint
Constructors
NoisePoint(float, float, float)
Constructor for the NoisePoint struct.
Declaration
public NoisePoint(float x, float y, float value)
Parameters
Type | Name | Description |
---|---|---|
float | x | The x-coordinate of the point. |
float | y | The y-coordinate of the point. |
float | value | The noise value associated with the point. |
Fields
value
Declaration
public float value
Field Value
Type | Description |
---|---|
float |
x
Declaration
public float x
Field Value
Type | Description |
---|---|
float |
y
Declaration
public float y
Field Value
Type | Description |
---|---|
float |