MCPcopy Create free account
hub / github.com/alandefreitas/matplotplusplus / draw_markers

Method draw_markers

source/matplot/backend/backend_interface.cpp:80–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected