| 342 | } |
| 343 | |
| 344 | std::string surface::legend_string(std::string_view title) { |
| 345 | return " keyentry " + |
| 346 | line_spec_.plot_string( |
| 347 | line_spec::style_to_plot::plot_line_only) + |
| 348 | " title \"" + escape(title) + "\""; |
| 349 | } |
| 350 | |
| 351 | std::string surface::grid_data_string() { |
| 352 | std::stringstream ss; |
nothing calls this directly
no test coverage detected