| 204 | } |
| 205 | |
| 206 | std::string fromThreeUUID(const std::string& uuid) { |
| 207 | if (uuid.size() > 2) { |
| 208 | if ((uuid[0] != '{') && (uuid[uuid.size() - 1] != '}')) { |
| 209 | return "{" + uuid + "}"; |
| 210 | } |
| 211 | } |
| 212 | return uuid; |
| 213 | } |
| 214 | |
| 215 | std::vector<double> toThreeVector(const Point3dVector& vertices) { |
| 216 | std::vector<double> result; |