b3GrahamScan2dConvexHull.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. Bullet Continuous Collision Detection and Physics Library
  3. Copyright (c) 2011 Advanced Micro Devices, Inc. http://bulletphysics.org
  4. This software is provided 'as-is', without any express or implied warranty.
  5. In no event will the authors be held liable for any damages arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it freely,
  8. subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  10. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  11. 3. This notice may not be removed or altered from any source distribution.
  12. */
  13. #ifndef B3_GRAHAM_SCAN_2D_CONVEX_HULL_H
  14. #define B3_GRAHAM_SCAN_2D_CONVEX_HULL_H
  15. #include "Bullet3Common/b3Vector3.h"
  16. #include "Bullet3Common/b3AlignedObjectArray.h"
  17. struct b3GrahamVector3 : public b3Vector3
  18. {
  19. b3GrahamVector3(const b3Vector3& org, int orgIndex)
  20. :b3Vector3(org),
  21. m_orgIndex(orgIndex)
  22. {
  23. }
  24. b3Scalar m_angle;
  25. int m_orgIndex;
  26. };
  27. struct b3AngleCompareFunc {
  28. b3Vector3 m_anchor;
  29. b3AngleCompareFunc(const b3Vector3& anchor)
  30. : m_anchor(anchor)
  31. {
  32. }
  33. bool operator()(const b3GrahamVector3& a, const b3GrahamVector3& b) const {
  34. if (a.m_angle != b.m_angle)
  35. return a.m_angle < b.m_angle;
  36. else
  37. {
  38. b3Scalar al = (a-m_anchor).length2();
  39. b3Scalar bl = (b-m_anchor).length2();
  40. if (al != bl)
  41. return al < bl;
  42. else
  43. {
  44. return a.m_orgIndex < b.m_orgIndex;
  45. }
  46. }
  47. }
  48. };
  49. inline void b3GrahamScanConvexHull2D(b3AlignedObjectArray<b3GrahamVector3>& originalPoints, b3AlignedObjectArray<b3GrahamVector3>& hull, const b3Vector3& normalAxis)
  50. {
  51. b3Vector3 axis0,axis1;
  52. b3PlaneSpace1(normalAxis,axis0,axis1);
  53. if (originalPoints.size()<=1)
  54. {
  55. for (int i=0;i<originalPoints.size();i++)
  56. hull.push_back(originalPoints[0]);
  57. return;
  58. }
  59. //step1 : find anchor point with smallest projection on axis0 and move it to first location
  60. for (int i=0;i<originalPoints.size();i++)
  61. {
  62. // const b3Vector3& left = originalPoints[i];
  63. // const b3Vector3& right = originalPoints[0];
  64. b3Scalar projL = originalPoints[i].dot(axis0);
  65. b3Scalar projR = originalPoints[0].dot(axis0);
  66. if (projL < projR)
  67. {
  68. originalPoints.swap(0,i);
  69. }
  70. }
  71. //also precompute angles
  72. originalPoints[0].m_angle = -1e30f;
  73. for (int i=1;i<originalPoints.size();i++)
  74. {
  75. b3Vector3 xvec = axis0;
  76. b3Vector3 ar = originalPoints[i]-originalPoints[0];
  77. originalPoints[i].m_angle = b3Cross(xvec, ar).dot(normalAxis) / ar.length();
  78. }
  79. //step 2: sort all points, based on 'angle' with this anchor
  80. b3AngleCompareFunc comp(originalPoints[0]);
  81. originalPoints.quickSortInternal(comp,1,originalPoints.size()-1);
  82. int i;
  83. for (i = 0; i<2; i++)
  84. hull.push_back(originalPoints[i]);
  85. //step 3: keep all 'convex' points and discard concave points (using back tracking)
  86. for (; i != originalPoints.size(); i++)
  87. {
  88. bool isConvex = false;
  89. while (!isConvex&& hull.size()>1) {
  90. b3Vector3& a = hull[hull.size()-2];
  91. b3Vector3& b = hull[hull.size()-1];
  92. isConvex = b3Cross(a-b,a-originalPoints[i]).dot(normalAxis)> 0;
  93. if (!isConvex)
  94. hull.pop_back();
  95. else
  96. hull.push_back(originalPoints[i]);
  97. }
  98. }
  99. }
  100. #endif //B3_GRAHAM_SCAN_2D_CONVEX_HULL_H