| 19 | namespace clip { |
| 20 | |
| 21 | struct PlotConfig { |
| 22 | ScaleConfig scale_x; |
| 23 | ScaleConfig scale_y; |
| 24 | |
| 25 | std::array<Measure, 4> margins; |
| 26 | std::vector<Rectangle> layout_stack; |
| 27 | }; |
| 28 | |
| 29 | ReturnCode plot_eval( |
| 30 | Context* ctx, |
nothing calls this directly
no outgoing calls
no test coverage detected