Interface IVoronoiFactory
Syntax
public interface IVoronoiFactory
Methods
CreateFace(Vertex)
Declaration
Face CreateFace(Vertex vertex)
Parameters
Type |
Name |
Description |
Vertex |
vertex |
|
Returns
CreateHalfEdge(Vertex, Face)
Declaration
HalfEdge CreateHalfEdge(Vertex origin, Face face)
Parameters
Returns
CreateVertex(Double, Double)
Declaration
Vertex CreateVertex(double x, double y)
Parameters
Type |
Name |
Description |
System.Double |
x |
|
System.Double |
y |
|
Returns
Initialize(Int32, Int32, Int32)
Declaration
void Initialize(int vertexCount, int edgeCount, int faceCount)
Parameters
Type |
Name |
Description |
System.Int32 |
vertexCount |
|
System.Int32 |
edgeCount |
|
System.Int32 |
faceCount |
|
Reset()
Declaration