deleteAttribute method
      
BufferGeometry
deleteAttribute(
    
- Attribute type
inherited
    Deletes the type with the specified Attribute.
Implementation
BufferGeometry deleteAttribute(Attribute type) {
  attributes.remove(type.name);
  return this;
}