API Docs for: GoblinPhysics
Show:

File: src\classes\Utils\Geometry.js

  1. /**
  2. * Provides methods useful for working with various types of geometries
  3. *
  4. * @class GeometryMethods
  5. * @static
  6. */
  7. Goblin.GeometryMethods = {
  8. /**
  9. * determines the location in a triangle closest to a given point
  10. *
  11. * @method findClosestPointInTriangle
  12. * @param {vec3} p point
  13. * @param {vec3} a first triangle vertex
  14. * @param {vec3} b second triangle vertex
  15. * @param {vec3} c third triangle vertex
  16. * @param {vec3} out vector where the result will be stored
  17. */
  18. findClosestPointInTriangle: (function() {
  19. var ab = new Goblin.Vector3(),
  20. ac = new Goblin.Vector3(),
  21. _vec = new Goblin.Vector3();
  22.  
  23. return function( p, a, b, c, out ) {
  24. var v;
  25.  
  26. // Check if P in vertex region outside A
  27. ab.subtractVectors( b, a );
  28. ac.subtractVectors( c, a );
  29. _vec.subtractVectors( p, a );
  30. var d1 = ab.dot( _vec ),
  31. d2 = ac.dot( _vec );
  32. if ( d1 <= 0 && d2 <= 0 ) {
  33. out.copy( a );
  34. return;
  35. }
  36.  
  37. // Check if P in vertex region outside B
  38. _vec.subtractVectors( p, b );
  39. var d3 = ab.dot( _vec ),
  40. d4 = ac.dot( _vec );
  41. if ( d3 >= 0 && d4 <= d3 ) {
  42. out.copy( b );
  43. return;
  44. }
  45.  
  46. // Check if P in edge region of AB
  47. var vc = d1*d4 - d3*d2;
  48. if ( vc <= 0 && d1 >= 0 && d3 <= 0 ) {
  49. v = d1 / ( d1 - d3 );
  50. out.scaleVector( ab, v );
  51. out.add( a );
  52. return;
  53. }
  54.  
  55. // Check if P in vertex region outside C
  56. _vec.subtractVectors( p, c );
  57. var d5 = ab.dot( _vec ),
  58. d6 = ac.dot( _vec );
  59. if ( d6 >= 0 && d5 <= d6 ) {
  60. out.copy( c );
  61. return;
  62. }
  63.  
  64. // Check if P in edge region of AC
  65. var vb = d5*d2 - d1*d6,
  66. w;
  67. if ( vb <= 0 && d2 >= 0 && d6 <= 0 ) {
  68. w = d2 / ( d2 - d6 );
  69. out.scaleVector( ac, w );
  70. out.add( a );
  71. return;
  72. }
  73.  
  74. // Check if P in edge region of BC
  75. var va = d3*d6 - d5*d4;
  76. if ( va <= 0 && d4-d3 >= 0 && d5-d6 >= 0 ) {
  77. w = (d4 - d3) / ( (d4-d3) + (d5-d6) );
  78. out.subtractVectors( c, b );
  79. out.scale( w );
  80. out.add( b );
  81. return;
  82. }
  83.  
  84. // P inside face region
  85. var denom = 1 / ( va + vb + vc );
  86. v = vb * denom;
  87. w = vc * denom;
  88.  
  89.  
  90. // At this point `ab` and `ac` can be recycled and lose meaning to their nomenclature
  91.  
  92. ab.scale( v );
  93. ab.add( a );
  94.  
  95. ac.scale( w );
  96.  
  97. out.addVectors( ab, ac );
  98. };
  99. })(),
  100.  
  101. /**
  102. * Finds the Barycentric coordinates of point `p` in the triangle `a`, `b`, `c`
  103. *
  104. * @method findBarycentricCoordinates
  105. * @param p {vec3} point to calculate coordinates of
  106. * @param a {vec3} first point in the triangle
  107. * @param b {vec3} second point in the triangle
  108. * @param c {vec3} third point in the triangle
  109. * @param out {vec3} resulting Barycentric coordinates of point `p`
  110. */
  111. findBarycentricCoordinates: function( p, a, b, c, out ) {
  112.  
  113. var v0 = new Goblin.Vector3(),
  114. v1 = new Goblin.Vector3(),
  115. v2 = new Goblin.Vector3();
  116.  
  117. v0.subtractVectors( b, a );
  118. v1.subtractVectors( c, a );
  119. v2.subtractVectors( p, a );
  120.  
  121. var d00 = v0.dot( v0 ),
  122. d01 = v0.dot( v1 ),
  123. d11 = v1.dot( v1 ),
  124. d20 = v2.dot( v0 ),
  125. d21 = v2.dot( v1 ),
  126. denom = d00 * d11 - d01 * d01;
  127.  
  128. out.y = ( d11 * d20 - d01 * d21 ) / denom;
  129. out.z = ( d00 * d21 - d01 * d20 ) / denom;
  130. out.x = 1 - out.y - out.z;
  131. },
  132.  
  133. /**
  134. * Calculates the distance from point `p` to line `ab`
  135. * @param p {vec3} point to calculate distance to
  136. * @param a {vec3} first point in line
  137. * @param b [vec3] second point in line
  138. * @returns {number}
  139. */
  140. findSquaredDistanceFromSegment: (function(){
  141. var ab = new Goblin.Vector3(),
  142. ap = new Goblin.Vector3(),
  143. bp = new Goblin.Vector3();
  144.  
  145. return function( p, a, b ) {
  146. ab.subtractVectors( a, b );
  147. ap.subtractVectors( a, p );
  148. bp.subtractVectors( b, p );
  149.  
  150. var e = ap.dot( ab );
  151. if ( e <= 0 ) {
  152. return ap.dot( ap );
  153. }
  154.  
  155. var f = ab.dot( ab );
  156. if ( e >= f ) {
  157. return bp.dot( bp );
  158. }
  159.  
  160. return ap.dot( ap ) - e * e / f;
  161. };
  162. })()
  163. };