Newer
Older
casic-smartcity-well-front / static / Cesium / DataSources / StripeOrientation.js
[wangxitong] on 8 Jul 2021 333 bytes mars3d总览
/**
 * Defined the orientation of stripes in {@link StripeMaterialProperty}.
 *
 * @enum {Number}
 */
var StripeOrientation = {
  /**
   * Horizontal orientation.
   * @type {Number}
   */
  HORIZONTAL: 0,

  /**
   * Vertical orientation.
   * @type {Number}
   */
  VERTICAL: 1,
};
export default Object.freeze(StripeOrientation);