BoundingFrustum.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. // MIT License - Copyright (C) The Mono.Xna Team
  2. // This file is subject to the terms and conditions defined in
  3. // file 'LICENSE.txt', which is part of this source code package.
  4. using System;
  5. using System.Diagnostics;
  6. namespace CommonLang.Geometry
  7. {
  8. /// <summary>
  9. /// Defines a viewing frustum for intersection operations.
  10. /// </summary>
  11. public class BoundingFrustum : IEquatable<BoundingFrustum>
  12. {
  13. #region Private Fields
  14. private Matrix _matrix;
  15. private readonly Vector3[] _corners = new Vector3[CornerCount];
  16. private readonly Plane[] _planes = new Plane[PlaneCount];
  17. #endregion
  18. #region Public Fields
  19. /// <summary>
  20. /// The number of planes in the frustum.
  21. /// </summary>
  22. public const int PlaneCount = 6;
  23. /// <summary>
  24. /// The number of corner points in the frustum.
  25. /// </summary>
  26. public const int CornerCount = 8;
  27. #endregion
  28. #region Properties
  29. /// <summary>
  30. /// Gets or sets the <see cref="Matrix"/> of the frustum.
  31. /// </summary>
  32. public Matrix Matrix
  33. {
  34. get { return this._matrix; }
  35. set
  36. {
  37. this._matrix = value;
  38. this.CreatePlanes(); // FIXME: The odds are the planes will be used a lot more often than the matrix
  39. this.CreateCorners(); // is updated, so this should help performance. I hope ;)
  40. }
  41. }
  42. /// <summary>
  43. /// Gets the near plane of the frustum.
  44. /// </summary>
  45. public Plane Near
  46. {
  47. get { return this._planes[0]; }
  48. }
  49. /// <summary>
  50. /// Gets the far plane of the frustum.
  51. /// </summary>
  52. public Plane Far
  53. {
  54. get { return this._planes[1]; }
  55. }
  56. /// <summary>
  57. /// Gets the left plane of the frustum.
  58. /// </summary>
  59. public Plane Left
  60. {
  61. get { return this._planes[2]; }
  62. }
  63. /// <summary>
  64. /// Gets the right plane of the frustum.
  65. /// </summary>
  66. public Plane Right
  67. {
  68. get { return this._planes[3]; }
  69. }
  70. /// <summary>
  71. /// Gets the top plane of the frustum.
  72. /// </summary>
  73. public Plane Top
  74. {
  75. get { return this._planes[4]; }
  76. }
  77. /// <summary>
  78. /// Gets the bottom plane of the frustum.
  79. /// </summary>
  80. public Plane Bottom
  81. {
  82. get { return this._planes[5]; }
  83. }
  84. #endregion
  85. #region Internal Properties
  86. internal string DebugDisplayString
  87. {
  88. get
  89. {
  90. return string.Concat(
  91. "Near( ", this._planes[0].DebugDisplayString, " ) \r\n",
  92. "Far( ", this._planes[1].DebugDisplayString, " ) \r\n",
  93. "Left( ", this._planes[2].DebugDisplayString, " ) \r\n",
  94. "Right( ", this._planes[3].DebugDisplayString, " ) \r\n",
  95. "Top( ", this._planes[4].DebugDisplayString, " ) \r\n",
  96. "Bottom( ", this._planes[5].DebugDisplayString, " ) "
  97. );
  98. }
  99. }
  100. #endregion
  101. #region Constructors
  102. /// <summary>
  103. /// Constructs the frustum by extracting the view planes from a matrix.
  104. /// </summary>
  105. /// <param name="value">Combined matrix which usually is (View * Projection).</param>
  106. public BoundingFrustum(Matrix value)
  107. {
  108. this._matrix = value;
  109. this.CreatePlanes();
  110. this.CreateCorners();
  111. }
  112. #endregion
  113. #region Operators
  114. /// <summary>
  115. /// Compares whether two <see cref="BoundingFrustum"/> instances are equal.
  116. /// </summary>
  117. /// <param name="a"><see cref="BoundingFrustum"/> instance on the left of the equal sign.</param>
  118. /// <param name="b"><see cref="BoundingFrustum"/> instance on the right of the equal sign.</param>
  119. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  120. public static bool operator ==(BoundingFrustum a, BoundingFrustum b)
  121. {
  122. if (Equals(a, null))
  123. return (Equals(b, null));
  124. if (Equals(b, null))
  125. return (Equals(a, null));
  126. return a._matrix == (b._matrix);
  127. }
  128. /// <summary>
  129. /// Compares whether two <see cref="BoundingFrustum"/> instances are not equal.
  130. /// </summary>
  131. /// <param name="a"><see cref="BoundingFrustum"/> instance on the left of the not equal sign.</param>
  132. /// <param name="b"><see cref="BoundingFrustum"/> instance on the right of the not equal sign.</param>
  133. /// <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  134. public static bool operator !=(BoundingFrustum a, BoundingFrustum b)
  135. {
  136. return !(a == b);
  137. }
  138. #endregion
  139. #region Public Methods
  140. #region Contains
  141. /// <summary>
  142. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingBox"/>.
  143. /// </summary>
  144. /// <param name="box">A <see cref="BoundingBox"/> for testing.</param>
  145. /// <returns>Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingBox"/>.</returns>
  146. public ContainmentType Contains(BoundingBox box)
  147. {
  148. var result = default(ContainmentType);
  149. this.Contains(ref box, out result);
  150. return result;
  151. }
  152. /// <summary>
  153. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingBox"/>.
  154. /// </summary>
  155. /// <param name="box">A <see cref="BoundingBox"/> for testing.</param>
  156. /// <param name="result">Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingBox"/> as an output parameter.</param>
  157. public void Contains(ref BoundingBox box, out ContainmentType result)
  158. {
  159. var intersects = false;
  160. for (var i = 0; i < PlaneCount; ++i)
  161. {
  162. var planeIntersectionType = default(PlaneIntersectionType);
  163. box.Intersects(ref this._planes[i], out planeIntersectionType);
  164. switch (planeIntersectionType)
  165. {
  166. case PlaneIntersectionType.Front:
  167. result = ContainmentType.Disjoint;
  168. return;
  169. case PlaneIntersectionType.Intersecting:
  170. intersects = true;
  171. break;
  172. }
  173. }
  174. result = intersects ? ContainmentType.Intersects : ContainmentType.Contains;
  175. }
  176. /// <summary>
  177. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingFrustum"/>.
  178. /// </summary>
  179. /// <param name="frustum">A <see cref="BoundingFrustum"/> for testing.</param>
  180. /// <returns>Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingFrustum"/>.</returns>
  181. public ContainmentType Contains(BoundingFrustum frustum)
  182. {
  183. if (this == frustum) // We check to see if the two frustums are equal
  184. return ContainmentType.Contains;// If they are, there's no need to go any further.
  185. var intersects = false;
  186. for (var i = 0; i < PlaneCount; ++i)
  187. {
  188. PlaneIntersectionType planeIntersectionType;
  189. frustum.Intersects(ref _planes[i], out planeIntersectionType);
  190. switch (planeIntersectionType)
  191. {
  192. case PlaneIntersectionType.Front:
  193. return ContainmentType.Disjoint;
  194. case PlaneIntersectionType.Intersecting:
  195. intersects = true;
  196. break;
  197. }
  198. }
  199. return intersects ? ContainmentType.Intersects : ContainmentType.Contains;
  200. }
  201. /// <summary>
  202. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingSphere"/>.
  203. /// </summary>
  204. /// <param name="sphere">A <see cref="BoundingSphere"/> for testing.</param>
  205. /// <returns>Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingSphere"/>.</returns>
  206. public ContainmentType Contains(BoundingSphere sphere)
  207. {
  208. var result = default(ContainmentType);
  209. this.Contains(ref sphere, out result);
  210. return result;
  211. }
  212. /// <summary>
  213. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingSphere"/>.
  214. /// </summary>
  215. /// <param name="sphere">A <see cref="BoundingSphere"/> for testing.</param>
  216. /// <param name="result">Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="BoundingSphere"/> as an output parameter.</param>
  217. public void Contains(ref BoundingSphere sphere, out ContainmentType result)
  218. {
  219. var intersects = false;
  220. for (var i = 0; i < PlaneCount; ++i)
  221. {
  222. var planeIntersectionType = default(PlaneIntersectionType);
  223. // TODO: we might want to inline this for performance reasons
  224. sphere.Intersects(ref this._planes[i], out planeIntersectionType);
  225. switch (planeIntersectionType)
  226. {
  227. case PlaneIntersectionType.Front:
  228. result = ContainmentType.Disjoint;
  229. return;
  230. case PlaneIntersectionType.Intersecting:
  231. intersects = true;
  232. break;
  233. }
  234. }
  235. result = intersects ? ContainmentType.Intersects : ContainmentType.Contains;
  236. }
  237. /// <summary>
  238. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="Vector3"/>.
  239. /// </summary>
  240. /// <param name="point">A <see cref="Vector3"/> for testing.</param>
  241. /// <returns>Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="Vector3"/>.</returns>
  242. public ContainmentType Contains(Vector3 point)
  243. {
  244. var result = default(ContainmentType);
  245. this.Contains(ref point, out result);
  246. return result;
  247. }
  248. /// <summary>
  249. /// Containment test between this <see cref="BoundingFrustum"/> and specified <see cref="Vector3"/>.
  250. /// </summary>
  251. /// <param name="point">A <see cref="Vector3"/> for testing.</param>
  252. /// <param name="result">Result of testing for containment between this <see cref="BoundingFrustum"/> and specified <see cref="Vector3"/> as an output parameter.</param>
  253. public void Contains(ref Vector3 point, out ContainmentType result)
  254. {
  255. for (var i = 0; i < PlaneCount; ++i)
  256. {
  257. // TODO: we might want to inline this for performance reasons
  258. if (PlaneHelper.ClassifyPoint(ref point, ref this._planes[i]) > 0)
  259. {
  260. result = ContainmentType.Disjoint;
  261. return;
  262. }
  263. }
  264. result = ContainmentType.Contains;
  265. }
  266. #endregion
  267. /// <summary>
  268. /// Compares whether current instance is equal to specified <see cref="BoundingFrustum"/>.
  269. /// </summary>
  270. /// <param name="other">The <see cref="BoundingFrustum"/> to compare.</param>
  271. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  272. public bool Equals(BoundingFrustum other)
  273. {
  274. return (this == other);
  275. }
  276. /// <summary>
  277. /// Compares whether current instance is equal to specified <see cref="BoundingFrustum"/>.
  278. /// </summary>
  279. /// <param name="obj">The <see cref="Object"/> to compare.</param>
  280. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  281. public override bool Equals(object obj)
  282. {
  283. return (obj is BoundingFrustum) && this == ((BoundingFrustum)obj);
  284. }
  285. /// <summary>
  286. /// Returns a copy of internal corners array.
  287. /// </summary>
  288. /// <returns>The array of corners.</returns>
  289. public Vector3[] GetCorners()
  290. {
  291. return (Vector3[])this._corners.Clone();
  292. }
  293. /// <summary>
  294. /// Returns a copy of internal corners array.
  295. /// </summary>
  296. /// <param name="corners">The array which values will be replaced to corner values of this instance. It must have size of <see cref="BoundingFrustum.CornerCount"/>.</param>
  297. public void GetCorners(Vector3[] corners)
  298. {
  299. if (corners == null) throw new ArgumentNullException("corners");
  300. if (corners.Length < CornerCount) throw new ArgumentOutOfRangeException("corners");
  301. this._corners.CopyTo(corners, 0);
  302. }
  303. /// <summary>
  304. /// Gets the hash code of this <see cref="BoundingFrustum"/>.
  305. /// </summary>
  306. /// <returns>Hash code of this <see cref="BoundingFrustum"/>.</returns>
  307. public override int GetHashCode()
  308. {
  309. return this._matrix.GetHashCode();
  310. }
  311. /// <summary>
  312. /// Gets whether or not a specified <see cref="BoundingBox"/> intersects with this <see cref="BoundingFrustum"/>.
  313. /// </summary>
  314. /// <param name="box">A <see cref="BoundingBox"/> for intersection test.</param>
  315. /// <returns><c>true</c> if specified <see cref="BoundingBox"/> intersects with this <see cref="BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  316. public bool Intersects(BoundingBox box)
  317. {
  318. var result = false;
  319. this.Intersects(ref box, out result);
  320. return result;
  321. }
  322. /// <summary>
  323. /// Gets whether or not a specified <see cref="BoundingBox"/> intersects with this <see cref="BoundingFrustum"/>.
  324. /// </summary>
  325. /// <param name="box">A <see cref="BoundingBox"/> for intersection test.</param>
  326. /// <param name="result"><c>true</c> if specified <see cref="BoundingBox"/> intersects with this <see cref="BoundingFrustum"/>; <c>false</c> otherwise as an output parameter.</param>
  327. public void Intersects(ref BoundingBox box, out bool result)
  328. {
  329. var containment = default(ContainmentType);
  330. this.Contains(ref box, out containment);
  331. result = containment != ContainmentType.Disjoint;
  332. }
  333. /// <summary>
  334. /// Gets whether or not a specified <see cref="BoundingFrustum"/> intersects with this <see cref="BoundingFrustum"/>.
  335. /// </summary>
  336. /// <param name="frustum">An other <see cref="BoundingFrustum"/> for intersection test.</param>
  337. /// <returns><c>true</c> if other <see cref="BoundingFrustum"/> intersects with this <see cref="BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  338. public bool Intersects(BoundingFrustum frustum)
  339. {
  340. return Contains(frustum) != ContainmentType.Disjoint;
  341. }
  342. /// <summary>
  343. /// Gets whether or not a specified <see cref="BoundingSphere"/> intersects with this <see cref="BoundingFrustum"/>.
  344. /// </summary>
  345. /// <param name="sphere">A <see cref="BoundingSphere"/> for intersection test.</param>
  346. /// <returns><c>true</c> if specified <see cref="BoundingSphere"/> intersects with this <see cref="BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  347. public bool Intersects(BoundingSphere sphere)
  348. {
  349. var result = default(bool);
  350. this.Intersects(ref sphere, out result);
  351. return result;
  352. }
  353. /// <summary>
  354. /// Gets whether or not a specified <see cref="BoundingSphere"/> intersects with this <see cref="BoundingFrustum"/>.
  355. /// </summary>
  356. /// <param name="sphere">A <see cref="BoundingSphere"/> for intersection test.</param>
  357. /// <param name="result"><c>true</c> if specified <see cref="BoundingSphere"/> intersects with this <see cref="BoundingFrustum"/>; <c>false</c> otherwise as an output parameter.</param>
  358. public void Intersects(ref BoundingSphere sphere, out bool result)
  359. {
  360. var containment = default(ContainmentType);
  361. this.Contains(ref sphere, out containment);
  362. result = containment != ContainmentType.Disjoint;
  363. }
  364. /// <summary>
  365. /// Gets type of intersection between specified <see cref="Plane"/> and this <see cref="BoundingFrustum"/>.
  366. /// </summary>
  367. /// <param name="plane">A <see cref="Plane"/> for intersection test.</param>
  368. /// <returns>A plane intersection type.</returns>
  369. public PlaneIntersectionType Intersects(Plane plane)
  370. {
  371. PlaneIntersectionType result;
  372. Intersects(ref plane, out result);
  373. return result;
  374. }
  375. /// <summary>
  376. /// Gets type of intersection between specified <see cref="Plane"/> and this <see cref="BoundingFrustum"/>.
  377. /// </summary>
  378. /// <param name="plane">A <see cref="Plane"/> for intersection test.</param>
  379. /// <param name="result">A plane intersection type as an output parameter.</param>
  380. public void Intersects(ref Plane plane, out PlaneIntersectionType result)
  381. {
  382. result = plane.Intersects(ref _corners[0]);
  383. for (int i = 1; i < _corners.Length; i++)
  384. if (plane.Intersects(ref _corners[i]) != result)
  385. result = PlaneIntersectionType.Intersecting;
  386. }
  387. /// <summary>
  388. /// Gets the distance of intersection of <see cref="Ray"/> and this <see cref="BoundingFrustum"/> or null if no intersection happens.
  389. /// </summary>
  390. /// <param name="ray">A <see cref="Ray"/> for intersection test.</param>
  391. /// <returns>Distance at which ray intersects with this <see cref="BoundingFrustum"/> or null if no intersection happens.</returns>
  392. public float? Intersects(Ray ray)
  393. {
  394. float? result;
  395. Intersects(ref ray, out result);
  396. return result;
  397. }
  398. /// <summary>
  399. /// Gets the distance of intersection of <see cref="Ray"/> and this <see cref="BoundingFrustum"/> or null if no intersection happens.
  400. /// </summary>
  401. /// <param name="ray">A <see cref="Ray"/> for intersection test.</param>
  402. /// <param name="result">Distance at which ray intersects with this <see cref="BoundingFrustum"/> or null if no intersection happens as an output parameter.</param>
  403. public void Intersects(ref Ray ray, out float? result)
  404. {
  405. ContainmentType ctype;
  406. this.Contains(ref ray.Position, out ctype);
  407. switch (ctype)
  408. {
  409. case ContainmentType.Disjoint:
  410. result = null;
  411. return;
  412. case ContainmentType.Contains:
  413. result = 0.0f;
  414. return;
  415. case ContainmentType.Intersects:
  416. // TODO: Needs additional test for not 0.0 and null results.
  417. result = null;
  418. float min = float.MinValue;
  419. float max = float.MaxValue;
  420. foreach (Plane plane in this._planes)
  421. {
  422. var normal = plane.Normal;
  423. float result2;
  424. Vector3.Dot(ref ray.Direction, ref normal, out result2);
  425. float result3;
  426. Vector3.Dot(ref ray.Position, ref normal, out result3);
  427. result3 += plane.D;
  428. if ((double)Math.Abs(result2) < 9.99999974737875E-06)
  429. {
  430. if ((double)result3 > 0.0)
  431. return;
  432. }
  433. else
  434. {
  435. float result4 = -result3 / result2;
  436. if ((double)result2 < 0.0)
  437. {
  438. if ((double)result4 > (double)max)
  439. return;
  440. if ((double)result4 > (double)min)
  441. min = result4;
  442. }
  443. else
  444. {
  445. if ((double)result4 < (double)min)
  446. return;
  447. if ((double)result4 < (double)max)
  448. max = result4;
  449. }
  450. }
  451. var distance = ray.Intersects(plane);
  452. if (distance.HasValue)
  453. {
  454. min = Math.Min(min, distance.Value);
  455. max = Math.Max(max, distance.Value);
  456. }
  457. }
  458. float temp = min >= 0.0 ? min : max;
  459. if (temp < 0.0)
  460. {
  461. return;
  462. }
  463. result = temp;
  464. return;
  465. default:
  466. throw new ArgumentOutOfRangeException();
  467. }
  468. }
  469. /// <summary>
  470. /// Returns a <see cref="String"/> representation of this <see cref="BoundingFrustum"/> in the format:
  471. /// {Near:[nearPlane] Far:[farPlane] Left:[leftPlane] Right:[rightPlane] Top:[topPlane] Bottom:[bottomPlane]}
  472. /// </summary>
  473. /// <returns><see cref="String"/> representation of this <see cref="BoundingFrustum"/>.</returns>
  474. public override string ToString()
  475. {
  476. return "{Near: " + this._planes[0] +
  477. " Far:" + this._planes[1] +
  478. " Left:" + this._planes[2] +
  479. " Right:" + this._planes[3] +
  480. " Top:" + this._planes[4] +
  481. " Bottom:" + this._planes[5] +
  482. "}";
  483. }
  484. #endregion
  485. #region Private Methods
  486. private void CreateCorners()
  487. {
  488. IntersectionPoint(ref this._planes[0], ref this._planes[2], ref this._planes[4], out this._corners[0]);
  489. IntersectionPoint(ref this._planes[0], ref this._planes[3], ref this._planes[4], out this._corners[1]);
  490. IntersectionPoint(ref this._planes[0], ref this._planes[3], ref this._planes[5], out this._corners[2]);
  491. IntersectionPoint(ref this._planes[0], ref this._planes[2], ref this._planes[5], out this._corners[3]);
  492. IntersectionPoint(ref this._planes[1], ref this._planes[2], ref this._planes[4], out this._corners[4]);
  493. IntersectionPoint(ref this._planes[1], ref this._planes[3], ref this._planes[4], out this._corners[5]);
  494. IntersectionPoint(ref this._planes[1], ref this._planes[3], ref this._planes[5], out this._corners[6]);
  495. IntersectionPoint(ref this._planes[1], ref this._planes[2], ref this._planes[5], out this._corners[7]);
  496. }
  497. private void CreatePlanes()
  498. {
  499. this._planes[0] = new Plane(-this._matrix.M13, -this._matrix.M23, -this._matrix.M33, -this._matrix.M43);
  500. this._planes[1] = new Plane(this._matrix.M13 - this._matrix.M14, this._matrix.M23 - this._matrix.M24, this._matrix.M33 - this._matrix.M34, this._matrix.M43 - this._matrix.M44);
  501. this._planes[2] = new Plane(-this._matrix.M14 - this._matrix.M11, -this._matrix.M24 - this._matrix.M21, -this._matrix.M34 - this._matrix.M31, -this._matrix.M44 - this._matrix.M41);
  502. this._planes[3] = new Plane(this._matrix.M11 - this._matrix.M14, this._matrix.M21 - this._matrix.M24, this._matrix.M31 - this._matrix.M34, this._matrix.M41 - this._matrix.M44);
  503. this._planes[4] = new Plane(this._matrix.M12 - this._matrix.M14, this._matrix.M22 - this._matrix.M24, this._matrix.M32 - this._matrix.M34, this._matrix.M42 - this._matrix.M44);
  504. this._planes[5] = new Plane(-this._matrix.M14 - this._matrix.M12, -this._matrix.M24 - this._matrix.M22, -this._matrix.M34 - this._matrix.M32, -this._matrix.M44 - this._matrix.M42);
  505. this.NormalizePlane(ref this._planes[0]);
  506. this.NormalizePlane(ref this._planes[1]);
  507. this.NormalizePlane(ref this._planes[2]);
  508. this.NormalizePlane(ref this._planes[3]);
  509. this.NormalizePlane(ref this._planes[4]);
  510. this.NormalizePlane(ref this._planes[5]);
  511. }
  512. private static void IntersectionPoint(ref Plane a, ref Plane b, ref Plane c, out Vector3 result)
  513. {
  514. // Formula used
  515. // d1 ( N2 * N3 ) + d2 ( N3 * N1 ) + d3 ( N1 * N2 )
  516. //P = -------------------------------------------------------------------------
  517. // N1 . ( N2 * N3 )
  518. //
  519. // Note: N refers to the normal, d refers to the displacement. '.' means dot product. '*' means cross product
  520. Vector3 v1, v2, v3;
  521. Vector3 cross;
  522. Vector3.Cross(ref b.Normal, ref c.Normal, out cross);
  523. float f;
  524. Vector3.Dot(ref a.Normal, ref cross, out f);
  525. f *= -1.0f;
  526. Vector3.Cross(ref b.Normal, ref c.Normal, out cross);
  527. Vector3.Multiply(ref cross, a.D, out v1);
  528. //v1 = (a.D * (Vector3.Cross(b.Normal, c.Normal)));
  529. Vector3.Cross(ref c.Normal, ref a.Normal, out cross);
  530. Vector3.Multiply(ref cross, b.D, out v2);
  531. //v2 = (b.D * (Vector3.Cross(c.Normal, a.Normal)));
  532. Vector3.Cross(ref a.Normal, ref b.Normal, out cross);
  533. Vector3.Multiply(ref cross, c.D, out v3);
  534. //v3 = (c.D * (Vector3.Cross(a.Normal, b.Normal)));
  535. result.X = (v1.X + v2.X + v3.X) / f;
  536. result.Y = (v1.Y + v2.Y + v3.Y) / f;
  537. result.Z = (v1.Z + v2.Z + v3.Z) / f;
  538. }
  539. private void NormalizePlane(ref Plane p)
  540. {
  541. float factor = 1f / p.Normal.Length();
  542. p.Normal.X *= factor;
  543. p.Normal.Y *= factor;
  544. p.Normal.Z *= factor;
  545. p.D *= factor;
  546. }
  547. #endregion
  548. }
  549. }