| 79 | } |
| 80 | |
| 81 | void writeFile(std::string filename, std::string data) |
| 82 | { |
| 83 | std::string newFileName(filename.begin(), filename.end()); |
| 84 | std::ofstream out(newFileName); |
| 85 | out << data; |
| 86 | out.close(); |
| 87 | } |
| 88 | |
| 89 | void DumpSVGCurve(std::vector<glm::dvec3> points, std::string filename, std::vector<uint32_t> indices) |
| 90 | { |
no outgoing calls
no test coverage detected