StripeOrientation.js 567 B

1234567891011121314151617181920212223242526272829
  1. /*global define*/
  2. define([
  3. '../Core/freezeObject'
  4. ], function(
  5. freezeObject) {
  6. "use strict";
  7. /**
  8. * Defined the orientation of stripes in {@link StripeMaterialProperty}.
  9. *
  10. * @namespace
  11. * @alias StripeOrientation
  12. */
  13. var StripeOrientation = {
  14. /**
  15. * Horizontal orientation.
  16. * @type {Number}
  17. */
  18. HORIZONTAL : 0,
  19. /**
  20. * Vertical orientation.
  21. * @type {Number}
  22. */
  23. VERTICAL : 1
  24. };
  25. return freezeObject(StripeOrientation);
  26. });