| 278 | } |
| 279 | |
| 280 | inline void writeFile(std::string filename, std::string data) |
| 281 | { |
| 282 | std::string newFileName(filename.begin(), filename.end()); |
| 283 | std::ofstream out(newFileName); |
| 284 | out << data; |
| 285 | out.close(); |
| 286 | } |
| 287 | |
| 288 | inline std::string makeThreeJSViewer(std::vector<glm::dvec3> input, std::vector<uint32_t> indices) |
| 289 | { |
no outgoing calls
no test coverage detected