Sphere.tests.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /* global QUnit */
  2. import { Box3 } from '../../../../src/math/Box3.js';
  3. import { Vector3 } from '../../../../src/math/Vector3.js';
  4. import { Sphere } from '../../../../src/math/Sphere.js';
  5. import { Plane } from '../../../../src/math/Plane.js';
  6. import { Matrix4 } from '../../../../src/math/Matrix4.js';
  7. import {
  8. zero3,
  9. one3,
  10. two3,
  11. eps
  12. } from '../../utils/math-constants.js';
  13. export default QUnit.module( 'Maths', () => {
  14. QUnit.module( 'Sphere', () => {
  15. // INSTANCING
  16. QUnit.test( 'Instancing', ( assert ) => {
  17. let a = new Sphere();
  18. assert.ok( a.center.equals( zero3 ), 'Passed!' );
  19. assert.ok( a.radius == - 1, 'Passed!' );
  20. a = new Sphere( one3.clone(), 1 );
  21. assert.ok( a.center.equals( one3 ), 'Passed!' );
  22. assert.ok( a.radius == 1, 'Passed!' );
  23. } );
  24. // PUBLIC
  25. QUnit.test( 'set', ( assert ) => {
  26. const a = new Sphere();
  27. assert.ok( a.center.equals( zero3 ), 'Passed!' );
  28. assert.ok( a.radius == - 1, 'Passed!' );
  29. a.set( one3, 1 );
  30. assert.ok( a.center.equals( one3 ), 'Passed!' );
  31. assert.ok( a.radius == 1, 'Passed!' );
  32. } );
  33. QUnit.test( 'setFromPoints', ( assert ) => {
  34. const a = new Sphere();
  35. const expectedCenter = new Vector3( 0.9330126941204071, 0, 0 );
  36. let expectedRadius = 1.3676668773461689;
  37. const optionalCenter = new Vector3( 1, 1, 1 );
  38. const points = [
  39. new Vector3( 1, 1, 0 ), new Vector3( 1, 1, 0 ),
  40. new Vector3( 1, 1, 0 ), new Vector3( 1, 1, 0 ),
  41. new Vector3( 1, 1, 0 ), new Vector3( 0.8660253882408142, 0.5, 0 ),
  42. new Vector3( - 0, 0.5, 0.8660253882408142 ), new Vector3( 1.8660253882408142, 0.5, 0 ),
  43. new Vector3( 0, 0.5, - 0.8660253882408142 ), new Vector3( 0.8660253882408142, 0.5, - 0 ),
  44. new Vector3( 0.8660253882408142, - 0.5, 0 ), new Vector3( - 0, - 0.5, 0.8660253882408142 ),
  45. new Vector3( 1.8660253882408142, - 0.5, 0 ), new Vector3( 0, - 0.5, - 0.8660253882408142 ),
  46. new Vector3( 0.8660253882408142, - 0.5, - 0 ), new Vector3( - 0, - 1, 0 ),
  47. new Vector3( - 0, - 1, 0 ), new Vector3( 0, - 1, 0 ),
  48. new Vector3( 0, - 1, - 0 ), new Vector3( - 0, - 1, - 0 ),
  49. ];
  50. a.setFromPoints( points );
  51. assert.ok( Math.abs( a.center.x - expectedCenter.x ) <= eps, 'Default center: check center.x' );
  52. assert.ok( Math.abs( a.center.y - expectedCenter.y ) <= eps, 'Default center: check center.y' );
  53. assert.ok( Math.abs( a.center.z - expectedCenter.z ) <= eps, 'Default center: check center.z' );
  54. assert.ok( Math.abs( a.radius - expectedRadius ) <= eps, 'Default center: check radius' );
  55. expectedRadius = 2.5946195770400102;
  56. a.setFromPoints( points, optionalCenter );
  57. assert.ok( Math.abs( a.center.x - optionalCenter.x ) <= eps, 'Optional center: check center.x' );
  58. assert.ok( Math.abs( a.center.y - optionalCenter.y ) <= eps, 'Optional center: check center.y' );
  59. assert.ok( Math.abs( a.center.z - optionalCenter.z ) <= eps, 'Optional center: check center.z' );
  60. assert.ok( Math.abs( a.radius - expectedRadius ) <= eps, 'Optional center: check radius' );
  61. } );
  62. QUnit.todo( 'clone', ( assert ) => {
  63. assert.ok( false, 'everything\'s gonna be alright' );
  64. } );
  65. QUnit.test( 'copy', ( assert ) => {
  66. const a = new Sphere( one3.clone(), 1 );
  67. const b = new Sphere().copy( a );
  68. assert.ok( b.center.equals( one3 ), 'Passed!' );
  69. assert.ok( b.radius == 1, 'Passed!' );
  70. // ensure that it is a true copy
  71. a.center = zero3;
  72. a.radius = 0;
  73. assert.ok( b.center.equals( one3 ), 'Passed!' );
  74. assert.ok( b.radius == 1, 'Passed!' );
  75. } );
  76. QUnit.test( 'isEmpty', ( assert ) => {
  77. const a = new Sphere();
  78. assert.ok( a.isEmpty(), 'Passed!' );
  79. a.set( one3, 1 );
  80. assert.ok( ! a.isEmpty(), 'Passed!' );
  81. // Negative radius contains no points
  82. a.set( one3, - 1 );
  83. assert.ok( a.isEmpty(), 'Passed!' );
  84. // Zero radius contains only the center point
  85. a.set( one3, 0 );
  86. assert.ok( ! a.isEmpty(), 'Passed!' );
  87. } );
  88. QUnit.test( 'makeEmpty', ( assert ) => {
  89. const a = new Sphere( one3.clone(), 1 );
  90. assert.ok( ! a.isEmpty(), 'Passed!' );
  91. a.makeEmpty();
  92. assert.ok( a.isEmpty(), 'Passed!' );
  93. assert.ok( a.center.equals( zero3 ), 'Passed!' );
  94. } );
  95. QUnit.test( 'containsPoint', ( assert ) => {
  96. const a = new Sphere( one3.clone(), 1 );
  97. assert.ok( ! a.containsPoint( zero3 ), 'Passed!' );
  98. assert.ok( a.containsPoint( one3 ), 'Passed!' );
  99. a.set( zero3, 0 );
  100. assert.ok( a.containsPoint( a.center ), 'Passed!' );
  101. } );
  102. QUnit.test( 'distanceToPoint', ( assert ) => {
  103. const a = new Sphere( one3.clone(), 1 );
  104. assert.ok( ( a.distanceToPoint( zero3 ) - 0.7320 ) < 0.001, 'Passed!' );
  105. assert.ok( a.distanceToPoint( one3 ) === - 1, 'Passed!' );
  106. } );
  107. QUnit.test( 'intersectsSphere', ( assert ) => {
  108. const a = new Sphere( one3.clone(), 1 );
  109. const b = new Sphere( zero3.clone(), 1 );
  110. const c = new Sphere( zero3.clone(), 0.25 );
  111. assert.ok( a.intersectsSphere( b ), 'Passed!' );
  112. assert.ok( ! a.intersectsSphere( c ), 'Passed!' );
  113. } );
  114. QUnit.test( 'intersectsBox', ( assert ) => {
  115. const a = new Sphere( zero3, 1 );
  116. const b = new Sphere( new Vector3( - 5, - 5, - 5 ), 1 );
  117. const box = new Box3( zero3, one3 );
  118. assert.strictEqual( a.intersectsBox( box ), true, 'Check unit sphere' );
  119. assert.strictEqual( b.intersectsBox( box ), false, 'Check shifted sphere' );
  120. } );
  121. QUnit.test( 'intersectsPlane', ( assert ) => {
  122. const a = new Sphere( zero3.clone(), 1 );
  123. const b = new Plane( new Vector3( 0, 1, 0 ), 1 );
  124. const c = new Plane( new Vector3( 0, 1, 0 ), 1.25 );
  125. const d = new Plane( new Vector3( 0, - 1, 0 ), 1.25 );
  126. assert.ok( a.intersectsPlane( b ), 'Passed!' );
  127. assert.ok( ! a.intersectsPlane( c ), 'Passed!' );
  128. assert.ok( ! a.intersectsPlane( d ), 'Passed!' );
  129. } );
  130. QUnit.test( 'clampPoint', ( assert ) => {
  131. const a = new Sphere( one3.clone(), 1 );
  132. const point = new Vector3();
  133. a.clampPoint( new Vector3( 1, 1, 3 ), point );
  134. assert.ok( point.equals( new Vector3( 1, 1, 2 ) ), 'Passed!' );
  135. a.clampPoint( new Vector3( 1, 1, - 3 ), point );
  136. assert.ok( point.equals( new Vector3( 1, 1, 0 ) ), 'Passed!' );
  137. } );
  138. QUnit.test( 'getBoundingBox', ( assert ) => {
  139. const a = new Sphere( one3.clone(), 1 );
  140. const aabb = new Box3();
  141. a.getBoundingBox( aabb );
  142. assert.ok( aabb.equals( new Box3( zero3, two3 ) ), 'Passed!' );
  143. a.set( zero3, 0 );
  144. a.getBoundingBox( aabb );
  145. assert.ok( aabb.equals( new Box3( zero3, zero3 ) ), 'Passed!' );
  146. // Empty sphere produces empty bounding box
  147. a.makeEmpty();
  148. a.getBoundingBox( aabb );
  149. assert.ok( aabb.isEmpty(), 'Passed!' );
  150. } );
  151. QUnit.test( 'applyMatrix4', ( assert ) => {
  152. const a = new Sphere( one3.clone(), 1 );
  153. const m = new Matrix4().makeTranslation( 1, - 2, 1 );
  154. const aabb1 = new Box3();
  155. const aabb2 = new Box3();
  156. a.clone().applyMatrix4( m ).getBoundingBox( aabb1 );
  157. a.getBoundingBox( aabb2 );
  158. assert.ok( aabb1.equals( aabb2.applyMatrix4( m ) ), 'Passed!' );
  159. } );
  160. QUnit.test( 'translate', ( assert ) => {
  161. const a = new Sphere( one3.clone(), 1 );
  162. a.translate( one3.clone().negate() );
  163. assert.ok( a.center.equals( zero3 ), 'Passed!' );
  164. } );
  165. QUnit.test( 'expandByPoint', ( assert ) => {
  166. const a = new Sphere( zero3.clone(), 1 );
  167. const p = new Vector3( 2, 0, 0 );
  168. assert.ok( a.containsPoint( p ) === false, 'a does not contain p' );
  169. a.expandByPoint( p );
  170. assert.ok( a.containsPoint( p ) === true, 'a does contain p' );
  171. assert.ok( a.center.equals( new Vector3( 0.5, 0, 0 ) ), 'Passed!' );
  172. assert.ok( a.radius === 1.5, 'Passed!' );
  173. } );
  174. QUnit.test( 'union', ( assert ) => {
  175. const a = new Sphere( zero3.clone(), 1 );
  176. const b = new Sphere( new Vector3( 2, 0, 0 ), 1 );
  177. a.union( b );
  178. assert.ok( a.center.equals( new Vector3( 1, 0, 0 ) ), 'Passed!' );
  179. assert.ok( a.radius === 2, 'Passed!' );
  180. // d contains c (demonstrates why it is necessary to process two points in union)
  181. const c = new Sphere( new Vector3(), 1 );
  182. const d = new Sphere( new Vector3( 1, 0, 0 ), 4 );
  183. c.union( d );
  184. assert.ok( c.center.equals( new Vector3( 1, 0, 0 ) ), 'Passed!' );
  185. assert.ok( c.radius === 4, 'Passed!' );
  186. // edge case: both spheres have the same center point
  187. const e = new Sphere( new Vector3(), 1 );
  188. const f = new Sphere( new Vector3(), 4 );
  189. e.union( f );
  190. assert.ok( e.center.equals( new Vector3( 0, 0, 0 ) ), 'Passed!' );
  191. assert.ok( e.radius === 4, 'Passed!' );
  192. } );
  193. QUnit.test( 'equals', ( assert ) => {
  194. const a = new Sphere();
  195. const b = new Sphere( new Vector3( 1, 0, 0 ) );
  196. const c = new Sphere( new Vector3( 1, 0, 0 ), 1.0 );
  197. assert.strictEqual( a.equals( b ), false, 'a does not equal b' );
  198. assert.strictEqual( a.equals( c ), false, 'a does not equal c' );
  199. assert.strictEqual( b.equals( c ), false, 'b does not equal c' );
  200. a.copy( b );
  201. assert.strictEqual( a.equals( b ), true, 'a equals b after copy()' );
  202. } );
  203. } );
  204. } );