-
Notifications
You must be signed in to change notification settings - Fork 8
/
FlatCircle.cs
223 lines (175 loc) · 6.5 KB
/
FlatCircle.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
namespace Flat
{
public readonly struct FlatCircle
{
public readonly Vector2 Center;
public readonly float Radius;
public FlatCircle(Vector2 center, float radius)
{
this.Center = center;
this.Radius = radius;
}
public FlatCircle(float x, float y, float radius)
{
this.Center = new Vector2(x, y);
this.Radius = radius;
}
public bool Equals(FlatCircle other)
{
return this.Center == other.Center && this.Radius == other.Radius;
}
public bool Intersects(Vector2 point)
{
float distance = FlatMath.Distance(this.Center, point);
return distance < this.Radius;
}
public void GetExtents(out FlatBox box)
{
Vector2 min = new Vector2(this.Center.X - this.Radius, this.Center.Y - this.Radius);
Vector2 max = new Vector2(this.Center.X + this.Radius, this.Center.Y + this.Radius);
box = new FlatBox(min, max);
}
public static bool FindApproximateBoundingCircle(Vector2[] points, out FlatCircle circle)
{
circle = default(FlatCircle);
const int minPoints = 2;
if (points is null)
{
return false;
}
if (points.Length < minPoints)
{
return false;
}
float minx = float.MaxValue;
float maxx = float.MinValue;
float miny = float.MaxValue;
float maxy = float.MinValue;
for(int i = 0; i < points.Length; i++)
{
Vector2 p = points[i];
if (p.X < minx) { minx = p.X; }
if (p.X > maxx) { maxx = p.X; }
if (p.Y < miny) { miny = p.Y; }
if (p.Y > maxy) { maxy = p.Y; }
}
float cx = (maxx + minx) * 0.5f; // x component of the bounding rectangle center.
float cy = (maxy + miny) * 0.5f; // y component of the bounding rectangle center.
float dx = cx - minx; // x and y component distance from the bounding rectangle center to a vertex on the bounding rectangle.
float dy = cy - miny;
float radius = MathF.Sqrt(dx * dx + dy * dy); // Radius is the distance from the center to the bounding rectangle vertex.
circle = new FlatCircle(cx, cy, radius);
return true;
}
private static bool CircleContainsAllPoints(Vector2[] points, int i0, int i1, Vector2 center, float radiusSquared)
{
for (int i = 0; i < points.Length; i++)
{
if (i == i0 || i == i1)
{
continue;
}
Vector2 p = points[i];
float dx = p.X - center.X;
float dy = p.Y - center.Y;
float distanceSquared = (dx * dx + dy * dy);
if (distanceSquared > radiusSquared)
{
return false;
}
}
return true;
}
private static bool CircleContainsAllPoints(Vector2[] points, int i0, int i1, float cx, float cy, float radiusSquared)
{
for (int i = 0; i < points.Length; i++)
{
if (i == i0 || i == i1)
{
continue;
}
Vector2 p = points[i];
float dx = p.X - cx;
float dy = p.Y - cy;
float distanceSquared = (dx * dx + dy * dy);
if (distanceSquared > radiusSquared)
{
return false;
}
}
return true;
}
private static bool CircleContainsAllPoints(Vector2[] points, int i0, int i1, int i2, Vector2 center, float radiusSquared)
{
for (int i = 0; i < points.Length; i++)
{
if (i == i0 || i == i1 || i == i2)
{
continue;
}
Vector2 p = points[i];
float dx = p.X - center.X;
float dy = p.Y - center.Y;
float distanceSquared = (dx * dx + dy * dy);
if (distanceSquared > radiusSquared)
{
return false;
}
}
return true;
}
private static bool CircleContainsAllPoints(Vector2[] points, int i0, int i1, int i2, float cx, float cy, float radiusSquared)
{
for (int i = 0; i < points.Length; i++)
{
if (i == i0 || i == i1 || i == i2)
{
continue;
}
Vector2 p = points[i];
float dx = p.X - cx;
float dy = p.Y - cy;
float distanceSquared = (dx * dx + dy * dy);
if (distanceSquared > radiusSquared)
{
return false;
}
}
return true;
}
private static void FindCircle(Vector2 a, Vector2 b, out Vector2 center, out float radiusSquared)
{
center = (a + b) / 2f;
radiusSquared = Vector2.DistanceSquared(center, a);
}
private static void FindCircleFast(Vector2 a, Vector2 b, out float cx, out float cy, out float radiusSquared)
{
cx = (a.X + b.X) * 0.5f;
cy = (a.Y + b.Y) * 0.5f;
float dx = cx - a.X;
float dy = cy - a.Y;
radiusSquared = dx * dx + dy * dy;
}
public override bool Equals(object obj)
{
if(obj is FlatCircle other)
{
return this.Equals(other);
}
return false;
}
public override int GetHashCode()
{
int result = new { this.Center, this.Radius }.GetHashCode();
return result;
}
public override string ToString()
{
string result = string.Format("Center: {0}, Radius: {1}", this.Center, this.Radius);
return result;
}
}
}