Reserve some memory for vertices, faces and edges
| 122 | |
| 123 | // Reserve some memory for vertices, faces and edges |
| 124 | void HalfEdgeStructure::reserve(uint32 facesCapacity, uint32 verticesCapacity, uint32 edgesCapacity) { |
| 125 | |
| 126 | mFaces.reserve(facesCapacity); |
| 127 | mVertices.reserve(verticesCapacity); |
| 128 | mEdges.reserve(edgesCapacity); |
| 129 | |
| 130 | } |
| 131 | |
| 132 | // Return a string representation of the half-edge structure |
| 133 | std::string HalfEdgeStructure::to_string() const { |
no outgoing calls
no test coverage detected