| 112 | } |
| 113 | |
| 114 | std::map<IndexedName, MappedName> elementMap(const TopoShape& shape) |
| 115 | { |
| 116 | std::map<IndexedName, MappedName> result {}; |
| 117 | auto elements = shape.getElementMap(); |
| 118 | for (auto const& entry : elements) { |
| 119 | result[entry.index] = entry.name; |
| 120 | } |
| 121 | return result; |
| 122 | } |
| 123 | |
| 124 | // TEST_F(TopoShapeMakeShapeWithElementMapTests, mapVertex) |
| 125 | // TEST_F(TopoShapeMakeShapeWithElementMapTests, mapEdge) |