MCPcopy Create free account
hub / github.com/brenocq/implot3d / AddTicksCustom

Function AddTicksCustom

implot3d.cpp:1507–1514  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1505}
1506
1507void AddTicksCustom(const double* values, const char* const labels[], int n, ImPlot3DTicker& ticker, ImPlot3DFormatter formatter, void* data) {
1508 for (int i = 0; i < n; i++) {
1509 if (labels != nullptr)
1510 ticker.AddTick(values[i], false, true, labels[i]);
1511 else
1512 ticker.AddTick(values[i], false, true, formatter, data);
1513 }
1514}
1515
1516//------------------------------------------------------------------------------
1517// [SECTION] Context Menus

Callers 1

SetupAxisTicksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected