cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
21 lines (18 loc) • 435 B
JavaScript
/**
* Defined the orientation of stripes in {@link StripeMaterialProperty}.
*
* @exports StripeOrientation
*/
var StripeOrientation = {
/**
* Horizontal orientation.
* @type {Number}
*/
HORIZONTAL : 0,
/**
* Vertical orientation.
* @type {Number}
*/
VERTICAL : 1
};
export default Object.freeze(StripeOrientation);