| 78 | } |
| 79 | |
| 80 | void backend_interface::draw_markers( |
| 81 | [[maybe_unused]] const std::vector<double> &x, |
| 82 | [[maybe_unused]] const std::vector<double> &y, |
| 83 | [[maybe_unused]] const std::vector<double> &z) { |
| 84 | if (!consumes_gnuplot_commands()) { |
| 85 | throw std::logic_error( |
| 86 | "There is no function to draw_markers in this backend yet"); |
| 87 | } else { |
| 88 | throw std::logic_error("This backend has no function draw_markers " |
| 89 | "because it is based on gnuplot commands"); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void backend_interface::draw_text( |
| 94 | [[maybe_unused]] const std::vector<double> &x, |
nothing calls this directly
no outgoing calls
no test coverage detected