forked from jfg8/csDelaunay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVertex.cs
130 lines (104 loc) · 2.73 KB
/
Vertex.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
namespace csDelaunay.Delaunay;
public class Vertex : ICoord
{
public static readonly Vertex VERTEX_AT_INFINITY = new(float.NaN, float.NaN);
#region Pool
private static readonly Queue<Vertex> pool = new();
private static int nVertices = 0;
private static Vertex Create(float x, float y)
{
if (float.IsNaN(x) || float.IsNaN(y))
{
return VERTEX_AT_INFINITY;
}
if (pool.Count > 0)
{
return pool.Dequeue().Init(x, y);
}
else
{
return new Vertex(x, y);
}
}
#endregion Pool
#region Object
private int vertexIndex;
public Vertex(float x, float y)
{
Init(x, y);
}
public Vector2 Coord { get; set; }
public float x => Coord.X;
public float y => Coord.Y;
public int VertexIndex
{ get { return vertexIndex; } }
public static Vertex Intersect(Halfedge halfedge0, Halfedge halfedge1)
{
Edge edge, edge0, edge1;
Halfedge halfedge;
float determinant, intersectionX, intersectionY;
bool rightOfSite;
edge0 = halfedge0.Edge;
edge1 = halfedge1.Edge;
if (edge0 == null || edge1 == null)
{
return null;
}
if (edge0.RightSite == edge1.RightSite)
{
return null;
}
determinant = edge0.a * edge1.b - edge0.b * edge1.a;
if (Math.Abs(determinant) < 1E-10)
{
// The edges are parallel
return null;
}
intersectionX = (edge0.c * edge1.b - edge1.c * edge0.b) / determinant;
intersectionY = (edge1.c * edge0.a - edge0.c * edge1.a) / determinant;
if (Voronoi.CompareByYThenX(edge0.RightSite, edge1.RightSite) < 0)
{
halfedge = halfedge0;
edge = edge0;
}
else
{
halfedge = halfedge1;
edge = edge1;
}
rightOfSite = intersectionX >= edge.RightSite.x;
if (rightOfSite && halfedge.LeftRight == LR.LEFT ||
!rightOfSite && halfedge.LeftRight == LR.RIGHT)
{
return null;
}
return Create(intersectionX, intersectionY);
}
public void Dispose()
{
Coord = Vector2.Zero;
pool.Enqueue(this);
}
public void SetIndex()
{
vertexIndex = nVertices++;
}
public override string ToString()
{
return "Vertex (" + vertexIndex + ")";
}
private Vertex Init(float x, float y)
{
Coord = new Vector2(x, y);
return this;
}
/*
* This is the only way to make a Vertex
*
* @param halfedge0
* @param halfedge1
* @return
*
*/
#endregion Object
}