SourceTermAnalysisSystem_vue/node_modules/@cesium/engine/Source/DataSources/StripeOrientation.js

20 lines
335 B
JavaScript
Raw Normal View History

2026-05-15 10:22:44 +08:00
/**
* Defined the orientation of stripes in {@link StripeMaterialProperty}.
*
* @enum {number}
*/
const StripeOrientation = {
/**
* Horizontal orientation.
* @type {number}
*/
HORIZONTAL: 0,
/**
* Vertical orientation.
* @type {number}
*/
VERTICAL: 1,
};
export default Object.freeze(StripeOrientation);