You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GeometryOffsetAttribute.js 328B

5 years ago
123456789101112
  1. import freezeObject from '../Core/freezeObject.js';
  2. /**
  3. * Represents which vertices should have a value of `true` for the `applyOffset` attribute
  4. * @private
  5. */
  6. var GeometryOffsetAttribute = {
  7. NONE : 0,
  8. TOP : 1,
  9. ALL : 2
  10. };
  11. export default freezeObject(GeometryOffsetAttribute);