C# Class LibNoise.Model.Line.Position

Internal struct that represent a 3D position
Show file Open project: everbytes/LibNoise

Public Properties

Property Type Description
x float
y float
z float

Public Methods

Method Description
Position ( float x, float y, float z )

Initializes a new instance of the Position struct.

Method Details

Position() public method

Initializes a new instance of the Position struct.
public Position ( float x, float y, float z )
x float The x.
y float The y.
z float The z.

Property Details

x public property

x coordinate of a position.
public float x
return float

y public property

y coordinate of a position.
public float y
return float

z public property

z coordinate of a position.
public float z
return float