| 26 | } |
| 27 | |
| 28 | void IfcCache::Clear() |
| 29 | { |
| 30 | _expressIDToPlacement.clear(); |
| 31 | std::unordered_map<uint32_t, glm::dmat4>().swap(_expressIDToPlacement); |
| 32 | _cartesianPoint3DCache.clear(); |
| 33 | std::unordered_map<uint32_t, glm::dvec3>().swap(_cartesianPoint3DCache); |
| 34 | _cartesianPoint2DCache.clear(); |
| 35 | std::unordered_map<uint32_t, glm::dvec2>().swap(_cartesianPoint2DCache); |
| 36 | } |
| 37 | |
| 38 | std::unordered_map<uint32_t, std::vector<uint32_t>> IfcCache::PopulateRelVoidsMap() |
| 39 | { |
no test coverage detected