GeometryOffsetAttribute.js 234 B

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