BoundingSphereState.js 754 B

12345678910111213141516171819202122232425262728
  1. import freezeObject from '../Core/freezeObject.js';
  2. /**
  3. * The state of a BoundingSphere computation being performed by a {@link Visualizer}.
  4. * @exports BoundingSphereState
  5. * @private
  6. */
  7. var BoundingSphereState = {
  8. /**
  9. * The BoundingSphere has been computed.
  10. * @type BoundingSphereState
  11. * @constant
  12. */
  13. DONE : 0,
  14. /**
  15. * The BoundingSphere is still being computed.
  16. * @type BoundingSphereState
  17. * @constant
  18. */
  19. PENDING : 1,
  20. /**
  21. * The BoundingSphere does not exist.
  22. * @type BoundingSphereState
  23. * @constant
  24. */
  25. FAILED : 2
  26. };
  27. export default freezeObject(BoundingSphereState);