| 63 | } |
| 64 | |
| 65 | static bool writeCoord(FILE *output, Point2 coord) { |
| 66 | fprintf(output, "%.12g, %.12g", coord.x, coord.y); |
| 67 | return true; |
| 68 | } |
| 69 | |
| 70 | template <typename T, int (*readChar)(T *), int (*readCoord)(T *, Point2 &)> |
| 71 | static int readControlPoints(T *input, Point2 *output) { |
no outgoing calls
no test coverage detected