forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BoundingBox.cs
813 lines (725 loc) · 32.5 KB
/
BoundingBox.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
// MIT License - Copyright (C) The Mono.Xna Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.Serialization;
namespace Microsoft.Xna.Framework
{
/// <summary>
/// Represents an axis-aligned bounding box (AABB) in 3D space.
/// </summary>
[DataContract]
[DebuggerDisplay("{DebugDisplayString,nq}")]
public struct BoundingBox : IEquatable<BoundingBox>
{
#region Public Fields
/// <summary>
/// The minimum extent of this <see cref="BoundingBox"/>.
/// </summary>
[DataMember]
public Vector3 Min;
/// <summary>
/// The maximum extent of this <see cref="BoundingBox"/>.
/// </summary>
[DataMember]
public Vector3 Max;
/// <summary>
/// The number of corners in a <see cref="BoundingBox"/>. This is equal to 8.
/// </summary>
public const int CornerCount = 8;
#endregion Public Fields
#region Public Constructors
/// <summary>
/// Create a <see cref="BoundingBox"/>.
/// </summary>
/// <param name="min">The minimum extent of the <see cref="BoundingBox"/>.</param>
/// <param name="max">The maximum extent of the <see cref="BoundingBox"/>.</param>
public BoundingBox(Vector3 min, Vector3 max)
{
this.Min = min;
this.Max = max;
}
#endregion Public Constructors
#region Public Methods
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains another <see cref="BoundingBox"/>.
/// </summary>
/// <param name="box">The <see cref="BoundingBox"/> to test for overlap.</param>
/// <returns>
/// A value indicating if this <see cref="BoundingBox"/> contains,
/// intersects with or is disjoint with <paramref name="box"/>.
/// </returns>
public ContainmentType Contains(BoundingBox box)
{
//test if all corner is in the same side of a face by just checking min and max
if (box.Max.X < Min.X
|| box.Min.X > Max.X
|| box.Max.Y < Min.Y
|| box.Min.Y > Max.Y
|| box.Max.Z < Min.Z
|| box.Min.Z > Max.Z)
return ContainmentType.Disjoint;
if (box.Min.X >= Min.X
&& box.Max.X <= Max.X
&& box.Min.Y >= Min.Y
&& box.Max.Y <= Max.Y
&& box.Min.Z >= Min.Z
&& box.Max.Z <= Max.Z)
return ContainmentType.Contains;
return ContainmentType.Intersects;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains another <see cref="BoundingBox"/>.
/// </summary>
/// <param name="box">The <see cref="BoundingBox"/> to test for overlap.</param>
/// <param name="result">
/// A value indicating if this <see cref="BoundingBox"/> contains,
/// intersects with or is disjoint with <paramref name="box"/>.
/// </param>
public void Contains(ref BoundingBox box, out ContainmentType result)
{
result = Contains(box);
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains a <see cref="BoundingFrustum"/>.
/// </summary>
/// <param name="frustum">The <see cref="BoundingFrustum"/> to test for overlap.</param>
/// <returns>
/// A value indicating if this <see cref="BoundingBox"/> contains,
/// intersects with or is disjoint with <paramref name="frustum"/>.
/// </returns>
public ContainmentType Contains(BoundingFrustum frustum)
{
//TODO: bad done here need a fix.
//Because question is not frustum contain box but reverse and this is not the same
int i;
ContainmentType contained;
Vector3[] corners = frustum.GetCorners();
// First we check if frustum is in box
for (i = 0; i < corners.Length; i++)
{
this.Contains(ref corners[i], out contained);
if (contained == ContainmentType.Disjoint)
break;
}
if (i == corners.Length) // This means we checked all the corners and they were all contain or instersect
return ContainmentType.Contains;
if (i != 0) // if i is not equal to zero, we can fastpath and say that this box intersects
return ContainmentType.Intersects;
// If we get here, it means the first (and only) point we checked was actually contained in the frustum.
// So we assume that all other points will also be contained. If one of the points is disjoint, we can
// exit immediately saying that the result is Intersects
i++;
for (; i < corners.Length; i++)
{
this.Contains(ref corners[i], out contained);
if (contained != ContainmentType.Contains)
return ContainmentType.Intersects;
}
// If we get here, then we know all the points were actually contained, therefore result is Contains
return ContainmentType.Contains;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains a <see cref="BoundingSphere"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingSphere"/> to test for overlap.</param>
/// <returns>
/// A value indicating if this <see cref="BoundingBox"/> contains,
/// intersects with or is disjoint with <paramref name="sphere"/>.
/// </returns>
public ContainmentType Contains(BoundingSphere sphere)
{
if (sphere.Center.X - Min.X >= sphere.Radius
&& sphere.Center.Y - Min.Y >= sphere.Radius
&& sphere.Center.Z - Min.Z >= sphere.Radius
&& Max.X - sphere.Center.X >= sphere.Radius
&& Max.Y - sphere.Center.Y >= sphere.Radius
&& Max.Z - sphere.Center.Z >= sphere.Radius)
return ContainmentType.Contains;
double dmin = 0;
double e = sphere.Center.X - Min.X;
if (e < 0)
{
if (e < -sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
else
{
e = sphere.Center.X - Max.X;
if (e > 0)
{
if (e > sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
}
e = sphere.Center.Y - Min.Y;
if (e < 0)
{
if (e < -sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
else
{
e = sphere.Center.Y - Max.Y;
if (e > 0)
{
if (e > sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
}
e = sphere.Center.Z - Min.Z;
if (e < 0)
{
if (e < -sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
else
{
e = sphere.Center.Z - Max.Z;
if (e > 0)
{
if (e > sphere.Radius)
{
return ContainmentType.Disjoint;
}
dmin += e * e;
}
}
if (dmin <= sphere.Radius * sphere.Radius)
return ContainmentType.Intersects;
return ContainmentType.Disjoint;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains a <see cref="BoundingSphere"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingSphere"/> to test for overlap.</param>
/// <param name="result">
/// A value indicating if this <see cref="BoundingBox"/> contains,
/// intersects with or is disjoint with <paramref name="sphere"/>.
/// </param>
public void Contains(ref BoundingSphere sphere, out ContainmentType result)
{
result = this.Contains(sphere);
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains a point.
/// </summary>
/// <param name="point">The <see cref="Vector3"/> to test.</param>
/// <returns>
/// <see cref="ContainmentType.Contains"/> if this <see cref="BoundingBox"/> contains
/// <paramref name="point"/> or <see cref="ContainmentType.Disjoint"/> if it does not.
/// </returns>
public ContainmentType Contains(Vector3 point)
{
ContainmentType result;
this.Contains(ref point, out result);
return result;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> contains a point.
/// </summary>
/// <param name="point">The <see cref="Vector3"/> to test.</param>
/// <param name="result">
/// <see cref="ContainmentType.Contains"/> if this <see cref="BoundingBox"/> contains
/// <paramref name="point"/> or <see cref="ContainmentType.Disjoint"/> if it does not.
/// </param>
public void Contains(ref Vector3 point, out ContainmentType result)
{
//first we get if point is out of box
if (point.X < this.Min.X
|| point.X > this.Max.X
|| point.Y < this.Min.Y
|| point.Y > this.Max.Y
|| point.Z < this.Min.Z
|| point.Z > this.Max.Z)
{
result = ContainmentType.Disjoint;
}
else
{
result = ContainmentType.Contains;
}
}
private static readonly Vector3 MaxVector3 = new Vector3(float.MaxValue);
private static readonly Vector3 MinVector3 = new Vector3(float.MinValue);
/// <summary>
/// Create a bounding box from the given list of points.
/// </summary>
/// <param name="points">The array of Vector3 instances defining the point cloud to bound</param>
/// <param name="index">The base index to start iterating from</param>
/// <param name="count">The number of points to iterate</param>
/// <returns>A bounding box that encapsulates the given point cloud.</returns>
/// <exception cref="System.ArgumentException">Thrown if the given array is null or has no points.</exception>
public static BoundingBox CreateFromPoints(Vector3[] points, int index = 0, int count = -1)
{
if (points == null || points.Length == 0)
throw new ArgumentException();
if (count == -1)
count = points.Length;
var minVec = MaxVector3;
var maxVec = MinVector3;
for (int i = index; i < count; i++)
{
minVec.X = (minVec.X < points[i].X) ? minVec.X : points[i].X;
minVec.Y = (minVec.Y < points[i].Y) ? minVec.Y : points[i].Y;
minVec.Z = (minVec.Z < points[i].Z) ? minVec.Z : points[i].Z;
maxVec.X = (maxVec.X > points[i].X) ? maxVec.X : points[i].X;
maxVec.Y = (maxVec.Y > points[i].Y) ? maxVec.Y : points[i].Y;
maxVec.Z = (maxVec.Z > points[i].Z) ? maxVec.Z : points[i].Z;
}
return new BoundingBox(minVec, maxVec);
}
/// <summary>
/// Create a bounding box from the given list of points.
/// </summary>
/// <param name="points">The list of Vector3 instances defining the point cloud to bound</param>
/// <param name="index">The base index to start iterating from</param>
/// <param name="count">The number of points to iterate</param>
/// <returns>A bounding box that encapsulates the given point cloud.</returns>
/// <exception cref="System.ArgumentException">Thrown if the given list is null or has no points.</exception>
public static BoundingBox CreateFromPoints(List<Vector3> points, int index = 0, int count = -1)
{
if (points == null || points.Count == 0)
throw new ArgumentException();
if (count == -1)
count = points.Count;
var minVec = MaxVector3;
var maxVec = MinVector3;
for (int i = index; i < count; i++)
{
minVec.X = (minVec.X < points[i].X) ? minVec.X : points[i].X;
minVec.Y = (minVec.Y < points[i].Y) ? minVec.Y : points[i].Y;
minVec.Z = (minVec.Z < points[i].Z) ? minVec.Z : points[i].Z;
maxVec.X = (maxVec.X > points[i].X) ? maxVec.X : points[i].X;
maxVec.Y = (maxVec.Y > points[i].Y) ? maxVec.Y : points[i].Y;
maxVec.Z = (maxVec.Z > points[i].Z) ? maxVec.Z : points[i].Z;
}
return new BoundingBox(minVec, maxVec);
}
/// <summary>
/// Create the enclosing <see cref="BoundingBox"/> from the given list of points.
/// </summary>
/// <param name="points">The list of <see cref="Vector3"/> instances defining the point cloud to bound.</param>
/// <returns>A <see cref="BoundingBox"/> that encloses the given point cloud.</returns>
/// <exception cref="System.ArgumentException">Thrown if the given list has no points.</exception>
public static BoundingBox CreateFromPoints(IEnumerable<Vector3> points)
{
if (points == null)
throw new ArgumentNullException();
var empty = true;
var minVec = MaxVector3;
var maxVec = MinVector3;
foreach (var ptVector in points)
{
minVec.X = (minVec.X < ptVector.X) ? minVec.X : ptVector.X;
minVec.Y = (minVec.Y < ptVector.Y) ? minVec.Y : ptVector.Y;
minVec.Z = (minVec.Z < ptVector.Z) ? minVec.Z : ptVector.Z;
maxVec.X = (maxVec.X > ptVector.X) ? maxVec.X : ptVector.X;
maxVec.Y = (maxVec.Y > ptVector.Y) ? maxVec.Y : ptVector.Y;
maxVec.Z = (maxVec.Z > ptVector.Z) ? maxVec.Z : ptVector.Z;
empty = false;
}
if (empty)
throw new ArgumentException();
return new BoundingBox(minVec, maxVec);
}
/// <summary>
/// Create the enclosing <see cref="BoundingBox"/> of a <see cref="BoundingSphere"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingSphere"/> to enclose.</param>
/// <returns>A <see cref="BoundingBox"/> enclosing <paramref name="sphere"/>.</returns>
public static BoundingBox CreateFromSphere(BoundingSphere sphere)
{
BoundingBox result;
CreateFromSphere(ref sphere, out result);
return result;
}
/// <summary>
/// Create the enclosing <see cref="BoundingBox"/> of a <see cref="BoundingSphere"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingSphere"/> to enclose.</param>
/// <param name="result">A <see cref="BoundingBox"/> enclosing <paramref name="sphere"/>.</param>
public static void CreateFromSphere(ref BoundingSphere sphere, out BoundingBox result)
{
var corner = new Vector3(sphere.Radius);
result.Min = sphere.Center - corner;
result.Max = sphere.Center + corner;
}
/// <summary>
/// Create the <see cref="BoundingBox"/> enclosing two other <see cref="BoundingBox"/> instances.
/// </summary>
/// <param name="original">A <see cref="BoundingBox"/> to enclose.</param>
/// <param name="additional">A <see cref="BoundingBox"/> to enclose.</param>
/// <returns>
/// The <see cref="BoundingBox"/> enclosing <paramref name="original"/> and <paramref name="additional"/>.
/// </returns>
public static BoundingBox CreateMerged(BoundingBox original, BoundingBox additional)
{
BoundingBox result;
CreateMerged(ref original, ref additional, out result);
return result;
}
/// <summary>
/// Create the <see cref="BoundingBox"/> enclosing two other <see cref="BoundingBox"/> instances.
/// </summary>
/// <param name="original">A <see cref="BoundingBox"/> to enclose.</param>
/// <param name="additional">A <see cref="BoundingBox"/> to enclose.</param>
/// <param name="result">
/// The <see cref="BoundingBox"/> enclosing <paramref name="original"/> and <paramref name="additional"/>.
/// </param>
public static void CreateMerged(ref BoundingBox original, ref BoundingBox additional, out BoundingBox result)
{
result.Min.X = Math.Min(original.Min.X, additional.Min.X);
result.Min.Y = Math.Min(original.Min.Y, additional.Min.Y);
result.Min.Z = Math.Min(original.Min.Z, additional.Min.Z);
result.Max.X = Math.Max(original.Max.X, additional.Max.X);
result.Max.Y = Math.Max(original.Max.Y, additional.Max.Y);
result.Max.Z = Math.Max(original.Max.Z, additional.Max.Z);
}
/// <summary>
/// Check if two <see cref="BoundingBox"/> instances are equal.
/// </summary>
/// <param name="other">The <see cref="BoundingBox"/> to compare with this <see cref="BoundingBox"/>.</param>
/// <returns>
/// <code>true</code> if <see cref="other"/> is equal to this <see cref="BoundingBox"/>,
/// <code>false</code> if it is not.
/// </returns>
public bool Equals(BoundingBox other)
{
return (this.Min == other.Min) && (this.Max == other.Max);
}
/// <summary>
/// Check if two <see cref="BoundingBox"/> instances are equal.
/// </summary>
/// <param name="obj">The <see cref="Object"/> to compare with this <see cref="BoundingBox"/>.</param>
/// <returns>
/// <code>true</code> if <see cref="obj"/> is equal to this <see cref="BoundingBox"/>,
/// <code>false</code> if it is not.
/// </returns>
public override bool Equals(object obj)
{
return (obj is BoundingBox) && this.Equals((BoundingBox)obj);
}
/// <summary>
/// Get an array of <see cref="Vector3"/> containing the corners of this <see cref="BoundingBox"/>.
/// </summary>
/// <returns>An array of <see cref="Vector3"/> containing the corners of this <see cref="BoundingBox"/>.</returns>
public Vector3[] GetCorners()
{
return new Vector3[] {
new Vector3(this.Min.X, this.Max.Y, this.Max.Z),
new Vector3(this.Max.X, this.Max.Y, this.Max.Z),
new Vector3(this.Max.X, this.Min.Y, this.Max.Z),
new Vector3(this.Min.X, this.Min.Y, this.Max.Z),
new Vector3(this.Min.X, this.Max.Y, this.Min.Z),
new Vector3(this.Max.X, this.Max.Y, this.Min.Z),
new Vector3(this.Max.X, this.Min.Y, this.Min.Z),
new Vector3(this.Min.X, this.Min.Y, this.Min.Z)
};
}
/// <summary>
/// Fill the first 8 places of an array of <see cref="Vector3"/>
/// with the corners of this <see cref="BoundingBox"/>.
/// </summary>
/// <param name="corners">The array to fill.</param>
/// <exception cref="ArgumentNullException">If <paramref name="corners"/> is <code>null</code>.</exception>
/// <exception cref="ArgumentOutOfRangeException">
/// If <paramref name="corners"/> has a length of less than 8.
/// </exception>
public void GetCorners(Vector3[] corners)
{
if (corners == null)
{
throw new ArgumentNullException("corners");
}
if (corners.Length < 8)
{
throw new ArgumentOutOfRangeException("corners", "Not Enought Corners");
}
corners[0].X = this.Min.X;
corners[0].Y = this.Max.Y;
corners[0].Z = this.Max.Z;
corners[1].X = this.Max.X;
corners[1].Y = this.Max.Y;
corners[1].Z = this.Max.Z;
corners[2].X = this.Max.X;
corners[2].Y = this.Min.Y;
corners[2].Z = this.Max.Z;
corners[3].X = this.Min.X;
corners[3].Y = this.Min.Y;
corners[3].Z = this.Max.Z;
corners[4].X = this.Min.X;
corners[4].Y = this.Max.Y;
corners[4].Z = this.Min.Z;
corners[5].X = this.Max.X;
corners[5].Y = this.Max.Y;
corners[5].Z = this.Min.Z;
corners[6].X = this.Max.X;
corners[6].Y = this.Min.Y;
corners[6].Z = this.Min.Z;
corners[7].X = this.Min.X;
corners[7].Y = this.Min.Y;
corners[7].Z = this.Min.Z;
}
/// <summary>
/// Get the hash code for this <see cref="BoundingBox"/>.
/// </summary>
/// <returns>A hash code for this <see cref="BoundingBox"/>.</returns>
public override int GetHashCode()
{
return this.Min.GetHashCode() + this.Max.GetHashCode();
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects another <see cref="BoundingBox"/>.
/// </summary>
/// <param name="box">The <see cref="BoundingBox"/> to test for intersection.</param>
/// <returns>
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="box"/>,
/// <code>false</code> if it does not.
/// </returns>
public bool Intersects(BoundingBox box)
{
bool result;
Intersects(ref box, out result);
return result;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects another <see cref="BoundingBox"/>.
/// </summary>
/// <param name="box">The <see cref="BoundingBox"/> to test for intersection.</param>
/// <param name="result">
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="box"/>,
/// <code>false</code> if it does not.
/// </param>
public void Intersects(ref BoundingBox box, out bool result)
{
if ((this.Max.X >= box.Min.X) && (this.Min.X <= box.Max.X))
{
if ((this.Max.Y < box.Min.Y) || (this.Min.Y > box.Max.Y))
{
result = false;
return;
}
result = (this.Max.Z >= box.Min.Z) && (this.Min.Z <= box.Max.Z);
return;
}
result = false;
return;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="BoundingFrustum"/>.
/// </summary>
/// <param name="frustum">The <see cref="BoundingFrustum"/> to test for intersection.</param>
/// <returns>
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="frustum"/>,
/// <code>false</code> if it does not.
/// </returns>
public bool Intersects(BoundingFrustum frustum)
{
return frustum.Intersects(this);
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="BoundingFrustum"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingFrustum"/> to test for intersection.</param>
/// <returns>
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="sphere"/>,
/// <code>false</code> if it does not.
/// </returns>
public bool Intersects(BoundingSphere sphere)
{
bool result;
Intersects(ref sphere, out result);
return result;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="BoundingFrustum"/>.
/// </summary>
/// <param name="sphere">The <see cref="BoundingFrustum"/> to test for intersection.</param>
/// <param name="result">
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="sphere"/>,
/// <code>false</code> if it does not.
/// </param>
public void Intersects(ref BoundingSphere sphere, out bool result)
{
var squareDistance = 0.0f;
var point = sphere.Center;
if (point.X < Min.X) squareDistance += (Min.X - point.X) * (Min.X - point.X);
if (point.X > Max.X) squareDistance += (point.X - Max.X) * (point.X - Max.X);
if (point.Y < Min.Y) squareDistance += (Min.Y - point.Y) * (Min.Y - point.Y);
if (point.Y > Max.Y) squareDistance += (point.Y - Max.Y) * (point.Y - Max.Y);
if (point.Z < Min.Z) squareDistance += (Min.Z - point.Z) * (Min.Z - point.Z);
if (point.Z > Max.Z) squareDistance += (point.Z - Max.Z) * (point.Z - Max.Z);
result = squareDistance <= sphere.Radius * sphere.Radius;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="Plane"/>.
/// </summary>
/// <param name="plane">The <see cref="Plane"/> to test for intersection.</param>
/// <returns>
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="plane"/>,
/// <code>false</code> if it does not.
/// </returns>
public PlaneIntersectionType Intersects(Plane plane)
{
PlaneIntersectionType result;
Intersects(ref plane, out result);
return result;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="Plane"/>.
/// </summary>
/// <param name="plane">The <see cref="Plane"/> to test for intersection.</param>
/// <param name="result">
/// <code>true</code> if this <see cref="BoundingBox"/> intersects <paramref name="plane"/>,
/// <code>false</code> if it does not.
/// </param>
public void Intersects(ref Plane plane, out PlaneIntersectionType result)
{
// See http://zach.in.tu-clausthal.de/teaching/cg_literatur/lighthouse3d_view_frustum_culling/index.html
Vector3 positiveVertex;
Vector3 negativeVertex;
if (plane.Normal.X >= 0)
{
positiveVertex.X = Max.X;
negativeVertex.X = Min.X;
}
else
{
positiveVertex.X = Min.X;
negativeVertex.X = Max.X;
}
if (plane.Normal.Y >= 0)
{
positiveVertex.Y = Max.Y;
negativeVertex.Y = Min.Y;
}
else
{
positiveVertex.Y = Min.Y;
negativeVertex.Y = Max.Y;
}
if (plane.Normal.Z >= 0)
{
positiveVertex.Z = Max.Z;
negativeVertex.Z = Min.Z;
}
else
{
positiveVertex.Z = Min.Z;
negativeVertex.Z = Max.Z;
}
// Inline Vector3.Dot(plane.Normal, negativeVertex) + plane.D;
var distance = plane.Normal.X * negativeVertex.X + plane.Normal.Y * negativeVertex.Y + plane.Normal.Z * negativeVertex.Z + plane.D;
if (distance > 0)
{
result = PlaneIntersectionType.Front;
return;
}
// Inline Vector3.Dot(plane.Normal, positiveVertex) + plane.D;
distance = plane.Normal.X * positiveVertex.X + plane.Normal.Y * positiveVertex.Y + plane.Normal.Z * positiveVertex.Z + plane.D;
if (distance < 0)
{
result = PlaneIntersectionType.Back;
return;
}
result = PlaneIntersectionType.Intersecting;
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="Ray"/>.
/// </summary>
/// <param name="ray">The <see cref="Ray"/> to test for intersection.</param>
/// <returns>
/// The distance along the <see cref="Ray"/> to the intersection point or
/// <code>null</code> if the <see cref="Ray"/> does not intesect this <see cref="BoundingBox"/>.
/// </returns>
public Nullable<float> Intersects(Ray ray)
{
return ray.Intersects(this);
}
/// <summary>
/// Check if this <see cref="BoundingBox"/> intersects a <see cref="Ray"/>.
/// </summary>
/// <param name="ray">The <see cref="Ray"/> to test for intersection.</param>
/// <param name="result">
/// The distance along the <see cref="Ray"/> to the intersection point or
/// <code>null</code> if the <see cref="Ray"/> does not intesect this <see cref="BoundingBox"/>.
/// </param>
public void Intersects(ref Ray ray, out Nullable<float> result)
{
result = Intersects(ray);
}
/// <summary>
/// Check if two <see cref="BoundingBox"/> instances are equal.
/// </summary>
/// <param name="a">A <see cref="BoundingBox"/> to compare the other.</param>
/// <param name="b">A <see cref="BoundingBox"/> to compare the other.</param>
/// <returns>
/// <code>true</code> if <see cref="a"/> is equal to this <see cref="b"/>,
/// <code>false</code> if it is not.
/// </returns>
public static bool operator ==(BoundingBox a, BoundingBox b)
{
return a.Equals(b);
}
/// <summary>
/// Check if two <see cref="BoundingBox"/> instances are not equal.
/// </summary>
/// <param name="a">A <see cref="BoundingBox"/> to compare the other.</param>
/// <param name="b">A <see cref="BoundingBox"/> to compare the other.</param>
/// <returns>
/// <code>true</code> if <see cref="a"/> is not equal to this <see cref="b"/>,
/// <code>false</code> if it is.
/// </returns>
public static bool operator !=(BoundingBox a, BoundingBox b)
{
return !a.Equals(b);
}
internal string DebugDisplayString
{
get
{
return string.Concat(
"Min( ", this.Min.DebugDisplayString, " ) \r\n",
"Max( ",this.Max.DebugDisplayString, " )"
);
}
}
/// <summary>
/// Get a <see cref="String"/> representation of this <see cref="BoundingBox"/>.
/// </summary>
/// <returns>A <see cref="String"/> representation of this <see cref="BoundingBox"/>.</returns>
public override string ToString()
{
return "{{Min:" + this.Min.ToString() + " Max:" + this.Max.ToString() + "}}";
}
/// <summary>
/// Deconstruction method for <see cref="BoundingBox"/>.
/// </summary>
/// <param name="min"></param>
/// <param name="max"></param>
public void Deconstruct(out Vector3 min, out Vector3 max)
{
min = Min;
max = Max;
}
#endregion Public Methods
}
}