您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

StripeOrientation.js 486B

5 年前
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);