MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / PlotScatter

Function PlotScatter

Source/3rdParty/implot/implot_items.cpp:2029–2032  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2027
2028template <typename T>
2029void 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
2034template <typename T>
2035void PlotScatter(const char* label_id, const T* xs, const T* ys, int count, const ImPlotSpec& spec) {

Callers 8

Demo_ScatterPlotsFunction · 0.85
Demo_ErrorBarsFunction · 0.85
Demo_PerIndexColorsFunction · 0.85
Demo_TimeScaleFunction · 0.85
Demo_QueryingFunction · 0.85
Demo_AnnotationsFunction · 0.85
Demo_CustomStylesFunction · 0.85
Demo_LegendPopupsFunction · 0.85

Calls 2

IndexerLinClass · 0.85
PlotScatterExFunction · 0.85

Tested by

no test coverage detected