| 80 | } |
| 81 | |
| 82 | static bool readCoord(Point2 &output, const char *&pathDef) { |
| 83 | return readDouble(output.x, pathDef) && readDouble(output.y, pathDef); |
| 84 | } |
| 85 | |
| 86 | static bool readBool(bool &output, const char *&pathDef) { |
| 87 | skipExtraChars(pathDef); |
no test coverage detected