#pragma once // Renders a scatter plot using ImPlot. // Call within an ImGui frame. void scatter_plot(const char* title, const float* xs, const float* ys, int count); void scatter_plot(const char* title, const double* xs, const double* ys, int count);