StripeOrientation.js 335 B

12345678910111213141516171819
  1. /**
  2. * Defined the orientation of stripes in {@link StripeMaterialProperty}.
  3. *
  4. * @enum {number}
  5. */
  6. const StripeOrientation = {
  7. /**
  8. * Horizontal orientation.
  9. * @type {number}
  10. */
  11. HORIZONTAL: 0,
  12. /**
  13. * Vertical orientation.
  14. * @type {number}
  15. */
  16. VERTICAL: 1,
  17. };
  18. export default Object.freeze(StripeOrientation);