StripeOrientation.js 486 B

123456789101112131415161718192021
  1. import freezeObject from '../Core/freezeObject.js';
  2. /**
  3. * Defined the orientation of stripes in {@link StripeMaterialProperty}.
  4. *
  5. * @exports StripeOrientation
  6. */
  7. var StripeOrientation = {
  8. /**
  9. * Horizontal orientation.
  10. * @type {Number}
  11. */
  12. HORIZONTAL : 0,
  13. /**
  14. * Vertical orientation.
  15. * @type {Number}
  16. */
  17. VERTICAL : 1
  18. };
  19. export default freezeObject(StripeOrientation);