1
0
forked from Rowland/EG
EG/Cesium-1.132/packages/engine/Source/DataSources/StripeOrientation.js
2025-08-25 17:48:13 +08:00

20 lines
335 B
JavaScript

/**
* 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);