Files
2026-08-11 09:53:42 -04:00

25 lines
370 B
JavaScript

// @ts-check
/**
* Defined the orientation of stripes in {@link StripeMaterialProperty}.
*
* @enum {number}
*/
const StripeOrientation = {
/**
* Horizontal orientation.
* @type {number}
*/
HORIZONTAL: 0,
/**
* Vertical orientation.
* @type {number}
*/
VERTICAL: 1,
};
Object.freeze(StripeOrientation);
export default StripeOrientation;