lookup3d.spec.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import { GridLookup3D } from '../../geometry';
  7. import { sortArray } from '../../../mol-data/util';
  8. import { OrderedSet } from '../../../mol-data/int';
  9. import { getBoundary } from '../boundary';
  10. const xs = [0, 0, 1];
  11. const ys = [0, 1, 0];
  12. const zs = [0, 0, 0];
  13. const rs = [0, 0.5, 1 / 3];
  14. describe('GridLookup3d', () => {
  15. it('basic', () => {
  16. const position = { x: xs, y: ys, z: zs, indices: OrderedSet.ofBounds(0, 3) }
  17. const boundary = getBoundary(position)
  18. const grid = GridLookup3D(position, boundary);
  19. let r = grid.find(0, 0, 0, 0);
  20. expect(r.count).toBe(1);
  21. expect(r.indices[0]).toBe(0);
  22. r = grid.find(0, 0, 0, 1);
  23. expect(r.count).toBe(3);
  24. expect(sortArray(r.indices)).toEqual([0, 1, 2]);
  25. });
  26. it('radius', () => {
  27. const position = { x: xs, y: ys, z: zs, radius: [0, 0.5, 1 / 3], indices: OrderedSet.ofBounds(0, 3) }
  28. const boundary = getBoundary(position)
  29. const grid = GridLookup3D(position, boundary);
  30. let r = grid.find(0, 0, 0, 0);
  31. expect(r.count).toBe(1);
  32. expect(r.indices[0]).toBe(0);
  33. r = grid.find(0, 0, 0, 0.5);
  34. expect(r.count).toBe(2);
  35. expect(sortArray(r.indices)).toEqual([0, 1]);
  36. });
  37. it('indexed', () => {
  38. const position = { x: xs, y: ys, z: zs, indices: OrderedSet.ofSingleton(1), radius: rs }
  39. const boundary = getBoundary(position)
  40. const grid = GridLookup3D(position, boundary);
  41. let r = grid.find(0, 0, 0, 0);
  42. expect(r.count).toBe(0);
  43. r = grid.find(0, 0, 0, 0.5);
  44. expect(r.count).toBe(1);
  45. expect(sortArray(r.indices)).toEqual([0]);
  46. });
  47. });