| 2027 | |
| 2028 | template <typename T> |
| 2029 | void PlotScatter(const char* label_id, const T* values, int count, double xscale, double x0, const ImPlotSpec& spec) { |
| 2030 | GetterXY<IndexerLin,IndexerIdx<T>> getter(IndexerLin(xscale,x0),IndexerIdx<T>(values,count,spec.Offset, Stride<T>(spec)),count); |
| 2031 | PlotScatterEx(label_id, getter, spec); |
| 2032 | } |
| 2033 | |
| 2034 | template <typename T> |
| 2035 | void PlotScatter(const char* label_id, const T* xs, const T* ys, int count, const ImPlotSpec& spec) { |
no test coverage detected