| 25 | }; |
| 26 | |
| 27 | [[nodiscard]] auto getStream() |
| 28 | { |
| 29 | std::ostringstream sstr; |
| 30 | // Set up our string conversion parameters |
| 31 | sstr.precision(2); |
| 32 | sstr.setf(std::ios::fixed | std::ios::boolalpha); |
| 33 | return sstr; |
| 34 | } |
| 35 | |
| 36 | // Axes labels in as strings |
| 37 | const std::array<std::string, 8> axislabels = {"X", "Y", "Z", "R", "U", "V", "PovX", "PovY"}; |
no outgoing calls
no test coverage detected