cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
28 lines (24 loc) • 561 B
JavaScript
define([
'../Core/freezeObject'
], function(
freezeObject) {
'use strict';
/**
* Defined the orientation of stripes in {@link StripeMaterialProperty}.
*
* @exports StripeOrientation
*/
var StripeOrientation = {
/**
* Horizontal orientation.
* @type {Number}
*/
HORIZONTAL : 0,
/**
* Vertical orientation.
* @type {Number}
*/
VERTICAL : 1
};
return freezeObject(StripeOrientation);
});