Clears the vertex and triangle storage, preserves allocated memory
(&mut self)
| 750 | |
| 751 | /// Clears the vertex and triangle storage, preserves allocated memory |
| 752 | pub fn clear(&mut self) { |
| 753 | self.vertices.clear(); |
| 754 | self.triangles.clear(); |
| 755 | } |
| 756 | |
| 757 | /// Appends the other mesh to this mesh |
| 758 | /// |
no outgoing calls
no test coverage detected