#pragma once // Renders a histogram using ImPlot::PlotHistogram. // Call within an ImGui frame. // bins == -1: automatic bin count via Sturges' rule. void histogram(const char* title, const float* values, int count, int bins = -1); void histogram(const char* title, const double* values, int count, int bins = -1);