You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StripeOrientation.js 486B

5 years ago
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);