You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
333 B
JavaScript
20 lines
333 B
JavaScript
/**
|
|
* 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);
|