EG/Cesium-1.132/packages/engine/Source/Core/GeometryOffsetAttribute.js
2025-08-25 17:48:13 +08:00

11 lines
234 B
JavaScript

/**
* Represents which vertices should have a value of `true` for the `applyOffset` attribute
* @private
*/
const GeometryOffsetAttribute = {
NONE: 0,
TOP: 1,
ALL: 2,
};
export default Object.freeze(GeometryOffsetAttribute);