UNPKG

cesium

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

20 lines (18 loc) 333 B
/** * 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);