4b2bb6998a
Añade soporte C++ al registry: vendor submodules (glfw, imgui, implot, tracy), sistema de build con CMake y toolchains cross-platform, runner C++ en fn CLI, parser de tests Google Test, y funciones bash para build Linux/Windows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
320 B
C
9 lines
320 B
C
#pragma once
|
|
|
|
// Renders a 2D line plot using ImPlot.
|
|
// Call within an ImGui frame (inside fn::run_app render callback).
|
|
void line_plot(const char* title, const float* xs, const float* ys, int count);
|
|
|
|
// Overload with double precision.
|
|
void line_plot(const char* title, const double* xs, const double* ys, int count);
|