GeometryOffsetAttribute-9ad0019c.js 398 B

12345678910111213141516
  1. define(['exports'], (function (exports) { 'use strict';
  2. /**
  3. * Represents which vertices should have a value of `true` for the `applyOffset` attribute
  4. * @private
  5. */
  6. const GeometryOffsetAttribute = {
  7. NONE: 0,
  8. TOP: 1,
  9. ALL: 2,
  10. };
  11. var GeometryOffsetAttribute$1 = Object.freeze(GeometryOffsetAttribute);
  12. exports.GeometryOffsetAttribute = GeometryOffsetAttribute$1;
  13. }));