@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
20 lines (18 loc) • 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);