C# Class Voronoi.Point

Represents a 2D point
Mostrar archivo Open project: jesta88/Unity-Voronoi Class Usage Examples

Public Properties

Property Type Description
halfEdges List
id int
x float
y float
z float

Public Methods

Method Description
Point ( float x, float y, float z ) : System
SetId ( int id ) : Point
ToString ( ) : string
ToVector3 ( ) : System.Vector3

Method Details

Point() public method

public Point ( float x, float y, float z ) : System
x float
y float
z float
return System

SetId() public method

public SetId ( int id ) : Point
id int
return Point

ToString() public method

public ToString ( ) : string
return string

ToVector3() public method

public ToVector3 ( ) : System.Vector3
return System.Vector3

Property Details

halfEdges public_oe property

public List halfEdges
return List

id public_oe property

public int id
return int

x public_oe property

public float x
return float

y public_oe property

public float y
return float

z public_oe property

public float z
return float