cesium/packages/engine/Source/Core/GeometryOffsetAttribute.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
234 B
JavaScript
Raw Permalink Normal View History

2018-05-22 05:31:47 +08:00
/**
* 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);